1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-08-13 16:53:59 -04:00
Simba/Projects/ScriptManager/scriptmanager.pas
2010-11-10 20:45:52 +01:00

575 lines
15 KiB
ObjectPascal

{
This file is part of the Simba Project
Copyright (c) 2009 by Raymond van Venetië and Merlijn Wajer
Simba is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Simba is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with MML. If not, see <http://www.gnu.org/licenses/>.
See the file COPYING, included in this distribution,
for details about the copyright.
Script Manager for the Simba project.
}
{
Raymond`, 11-9-2010 20:26:27:
ScriptManager/General/Settings.xml (Lijst van alle geinstaleerde scripts)
ScriptManager/General/<Scriptname>/Info.xml (Informatie over het script)
ScriptManager/<ScriptName>/<Files> (Alle files die het script nodig heeft)
}
unit scriptmanager;
{$mode objfpc}{$H+}
interface
uses
{$IFDEF UNIX}cthreads,cmem,{$ENDIF} Classes, SysUtils, FileUtil, Forms,
Controls, Graphics, Dialogs, StdCtrls,
ExtCtrls, ComCtrls, ActnList, Menus, settings, updater,strutils, MufasaTypes,
dom;
type
{ TSimbaScript }
TSimbaScript = class(TObject)
private
procedure LoadFromNode( Script : TDOMNode);
public
Name, Version, Author, Description: String;
Tags, Files: TStringList;
procedure Dbg;
constructor Create;
destructor Destroy; override;
end;
{ TLSimbaScript }
TLSimbaScript = class(TSimbaScript) //Installed Script (Local Simba Script)
public
AutoCheckUpdates : boolean;
OnlineScript : TSimbaScript;
procedure LoadFromFile(const filename : string);
function LoadFromName(const ScriptName,maindir : string) : boolean; //Maindir = maindir of ScriptManager
procedure SaveToFile(const FileName : string);
procedure Save(const MainDir : string); //MainDir = maindir of ScriptManager
constructor create;
end;
{ TScriptManager }
TScriptManager = class (TObject)
private
FMaindir: string;
FScripts : TList; //Array of the online scripts
FLScripts: TList; //Array of the local scripts
FVersion : String;
FUpdating : boolean;
function GetLScriptCount: integer;
function GetMainDir: string;
function GetScript(index : integer): TSimbaScript;
function GetScriptCount: integer;
public
property MainDir : string read GetMainDir write FMaindir;
property SimbaScript[index : integer] : TSimbaScript read GetScript;
procedure Update; //Gets the online scripts
procedure LUpdate; //Loads the local scripts, uses MainDir
function NewVersion(Script : integer) : boolean; //Checks for updates for Script
procedure InstallNewScript(Script : integer); //Installs Script (Online -> Local)
procedure UpdateScript(Script : integer); //Updates all the info/files of local script
procedure LSave; //Saves the local scripts, uses MainDir
property LScriptCount : integer read GetLScriptCount; //LScript = Local Script = Installed Script
property ScriptCount : integer read GetScriptCount; //Online script
property Version : string read FVersion;
constructor Create;
destructor Destroy; override;
end;
{ TForm1 }
TForm1 = class(TForm)
Button1: TButton;
GroupBox1: TGroupBox;
ListView1: TListView;
Memo1: TMemo;
procedure Button1Click(Sender: TObject);
procedure ClickItem(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
procedure FormCreate(Sender: TObject);
procedure ListView1Change(Sender: TObject; Item: TListItem;
Change: TItemChange);
private
Mng : TScriptManager;
public
{ public declarations }
end;
var
Form1: TForm1;
implementation
uses
XMLRead,XMLWrite;
{$R *.lfm}
{ TForm1 }
procedure fill(s: TMMLSettings);
var
i:integer;
ss: TSimbaScript;
LI: TListItem;
strarr: TStringArray;
b: TButton;
begin
if not s.ListKeys('Scripts/ScriptList', strarr) then
writeln('ListKeys returned false');
writeln('strarr length: ' + inttostr(length(strarr)));
for i := 0 to high(strarr) do
begin
writeln(s.GetKeyValue('Scripts/ScriptList/Script/Name'));
ss := TSimbaScript.Create();
ss.Name := s.GetKeyValue('Scripts/ScriptList/Script/Name');
ss.Author:= s.GetKeyValue('Scripts/ScriptList/Script/Author');
ss.Description:= s.GetKeyValue('Scripts/ScriptList/Script/Description');
LI := Form1.ListView1.Items.Add;
LI.Caption := ss.Name;
LI.Data := ss;
LI.ImageIndex:= 0;
s.DeleteKey('Scripts/ScriptList/Script');
end;
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
Mng := TScriptManager.Create;
ListView1.Columns.Add.Width:= ClientWidth;
end;
procedure TForm1.ListView1Change(Sender: TObject; Item: TListItem;
Change: TItemChange);
var
Script : TSimbaScript;
begin
if Item.Data <> nil then
begin
Memo1.Clear;
Script := TSimbaScript(Item.data);
Memo1.Lines.Add('Name: ' + Script.Name);
Memo1.lines.add('Author: ' + Script.Author);
Memo1.Lines.add('Version: ' + Script.Version);
Memo1.Lines.Add('Description: ' + Script.Description);
end;
end;
procedure TForm1.ClickItem(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
var
item: TListItem;
begin
item := Form1.ListView1.GetItemAt(x, y);
if item = nil then
exit;
if item.data = nil then
exit;
{ Any selection causes the description to change }
{ form1.Memo1.Lines.Clear();
form1.Memo1.Lines.Append(TSimbaScript(item.data).Description);
if Button = mbLeft then
begin
end else if Button = mbRight then
begin
{ Popup Actions }
Form1.ScriptPopup.Items[0].Caption:= 'Install ' + TSimbaScript(item.data).Name;
Form1.ScriptPopup.PopUp();
end;
//form1.Memo1.Text := TSimbaScript(item.data).Description; }
end;
procedure TForm1.Button1Click(Sender: TObject);
var
i : integer;
Item : TListItem;
begin
Mng.Update;
for i := 0 to Mng.ScriptCount - 1 do
begin
Item := ListView1.Items.Add;
Item.Data:= Mng.SimbaScript[i];
Item.Caption:= Mng.SimbaScript[i].Name;
end;
end;
{ TSimbaScript }
procedure TSimbaScript.LoadFromNode(Script: TDOMNode);
function NodeContents(ItemStr : string; node : TDOMNode) : string;
var
tmpNode : TDOMNode;
begin
result := '';
if node = nil then
exit;
tmpNode := node.FindNode(itemstr);
if tmpNode <> nil then
result := Trim(tmpNode.TextContent);
end;
function NodeSubContents(ItemStr : string; node : TDOMNode) : TStringList;
var
tmpNode : TDOMNode;
begin
Result := TStringList.Create;
if node = nil then
exit;
tmpNode := node.FindNode(itemstr);
if tmpNode <> nil then
begin
tmpNode := tmpNode.FirstChild;
while tmpNode <> nil do
begin
Result.add(trim(tmpNode.TextContent));
tmpNode := tmpNode.NextSibling;
end;
end;
end;
begin
Author:= NodeContents('Author',script);
Name := NodeContents('Name',script);
Version := NodeContents('Version',script);
Description:= NodeContents('Description',script);
Tags := NodeSubContents('Tags',script);
Files := NodeSubContents('Files',script);
end;
procedure TSimbaScript.Dbg;
var
i : integer;
begin
Writeln(Name);
Writeln(' Author: ' + Author);
Writeln(' Version: ' + Version);
Writeln(' Description: ' + Description);
Writeln(' Tags:');
for i := 0 to Tags.Count - 1 do
Writeln(' ' + Tags[i]);
Writeln(' Files:');
for i := 0 to Files.Count - 1 do
Writeln(' ' + Files[i]);
end;
constructor TSimbaScript.Create;
begin
inherited;
{stuff here}
end;
destructor TSimbaScript.Destroy;
begin
if Files <> nil then
FreeAndNil(Files);
if Tags <> nil then
FreeAndNil(Tags);
{stuff here}
inherited;
end;
{ TScriptManager }
function TScriptManager.GetLScriptCount: integer;
begin
result := FLScripts.Count;
end;
function TScriptManager.GetMainDir: string;
begin
result := IncludeTrailingPathDelimiter(FMainDir);
end;
function TScriptManager.GetScript(index : integer): TSimbaScript;
begin
result := TSimbaScript(FScripts[index]);
end;
function TScriptManager.GetScriptCount: integer;
begin
result := FScripts.Count;
end;
procedure TScriptManager.Update;
var
XMLFile : string;
Stream : TStringStream;
XMLDoc : TXMLDocument;
Node,Script : TDOMNode;
Subs : TStringList;
Down : TDownloadThread;
SScript : TSimbaScript;
begin
if FUpdating then
exit;
FUpdating := True;
Down := TDownloadThread.Create('http://old.villavu.com/sm',@XMLFile);
down.Execute;
while down.Done = false do
begin
Application.ProcessMessages;
Sleep(25);
end;
Stream := TStringStream.Create(XMLFile);
ReadXMLFile(XMLDoc,Stream);
Stream.Free;
Node := XMLDoc.FirstChild.FindNode('Version');
if node <> nil then
FVersion:= Node.TextContent;
Node := XMLDoc.FirstChild.FindNode('ScriptList');
if node <> nil then
begin
script := Node.FirstChild;
while Script <> nil do
begin
SScript := TSimbaScript.Create;
SScript.LoadFromNode(Script);
FScripts.Add(SScript);
SScript.Dbg;
Script := Script.NextSibling;
end;
end;
XMLDoc.Free;
FUpdating := false;
end;
procedure TScriptManager.LUpdate;
var
XMLDoc : TXMLDocument;
Node,Script : TDOMNode;
Subs : TStringList;
Down : TDownloadThread;
SScript : TLSimbaScript;
begin
if DirectoryExists(MainDir) = false then
exit;
if FileExists(maindir + 'General' + DirectorySeparator+ 'scripts.xml') then
begin
ReadXMLFile(XMLDoc,maindir + 'General' + DirectorySeparator+ 'scripts.xml');
Node := XMLDoc.FirstChild.FindNode('Scripts');
if node <> nil then
begin
script := Node.FirstChild;
while Script <> nil do
begin
SScript := TLSimbaScript.Create;
SScript.LoadFromName(Node.TextContent,maindir);
FLScripts.Add(SScript);
SScript.Dbg;
Script := Script.NextSibling;
end;
end;
XMLDoc.Free;
end;
end;
function TScriptManager.NewVersion(Script: integer): boolean;
var
Scrpt : TLSimbaScript;
I : integer;
begin
Scrpt := TLSimbaScript(FLScripts[Script]);
if Scrpt.OnlineScript = nil then
for i := 0 to ScriptCount-1 do
if TSimbaScript(FScripts[i]).Name = Scrpt.Name then
begin
Scrpt.OnlineScript := TSimbaScript(FScripts[i]);
Break;
end;
result := Scrpt.OnlineScript.Version <> Scrpt.Version;
end;
procedure TScriptManager.InstallNewScript(Script: integer);
var
Scrpt : TSimbaScript;
LScrpt: TLSimbaScript;
Dir : string;
begin
Scrpt := TSimbaScript(FScripts[Script]);
LScrpt := TLSimbaScript.create;
FLScripts.Add(LScrpt);
LScrpt.Name:= Scrpt.Name;
LScrpt.OnlineScript := Scrpt;
Dir := MainDir + LScrpt.Name + DirectorySeparator;
if DirectoryExists(dir) then
Writeln('Directory already exists, yet continue?');
if not CreateDir(Dir) then
Writeln('Failed to create dir..');
UpdateScript(FLScripts.Count - 1);
end;
procedure TScriptManager.UpdateScript(Script: integer);
var
LScrpt : TLSimbaScript;
Scrpt : TSimbaScript;
begin
LScrpt := TLSimbaScript(FLScripts[Script]);
if not NewVersion(Script) then
Exit;
Scrpt := LScrpt.OnlineScript;
with LScrpt do
begin
Version:= Scrpt.Version;
Name:= Scrpt.Name;
Author := Scrpt.Author;
Description:= Scrpt.Version;
Tags.Assign(Scrpt.Tags);
Files.Assign(Scrpt.Files);
end;
LScrpt.Save(MainDir); //Saves the setting file, now we only need to update the files
//Download files & write to folder
end;
procedure TScriptManager.LSave;
var
XMLDoc : TXMLDocument;
procedure AddTextElement(root : TDOMNode; Element : string; Text : string);
var
node : TDOMNode;
begin
Node := XMLDoc.createElement(Element);
root.AppendChild(node);
node.TextContent:= Text;
end;
var
Node : TDOMNode;
i : integer;
begin
if DirectoryExists(MainDir) = false then
exit;
XMLDoc := TXMLDocument.Create;
Node := XMLDoc.CreateElement('Scripts');
XMLDoc.AppendChild(node);
for i := 0 to FLScripts.Count - 1 do
AddTextElement(node,'Script', TLSimbaScript(FLScripts[i]).Name);
WriteXMLFile(XMLDoc,maindir + 'General' + DirectorySeparator+ 'scripts.xml');
XMLDoc.Free;
end;
constructor TScriptManager.Create;
begin
inherited;
FLScripts := TList.Create;
FScripts := TList.Create;
FVersion := '';
FUpdating:= False;
end;
destructor TScriptManager.Destroy;
begin
while FScripts.Count > 0 do
begin
TSimbaScript(FScripts[0]).Free;
FScripts.Delete(0);
end;
while FLScripts.Count > 0 do
begin
TLSimbaScript(FLScripts[0]).Free;
FLScripts.Delete(0);
end;
inherited Destroy;
end;
{ TLSimbaScript }
procedure TLSimbaScript.LoadFromFile(const filename: string);
var
XMLDoc : TXMLDocument;
begin
ReadXMLFile(XMLDoc,filename);
Self.LoadFromNode(XMLDoc.FirstChild);
XMLDoc.Free;
end;
function TLSimbaScript.LoadFromName(const ScriptName,MainDir : string) : boolean;
begin
Result := false;
if FileExists(MainDir + 'General' + DirectorySeparator + ScriptName +
'info.xml') then
begin
Result := true;
LoadFromFile(MainDir + 'General' + DirectorySeparator + ScriptName +
'info.xml');
end;
end;
procedure TLSimbaScript.SaveToFile(const FileName: string);
var
XMLDoc : TXMLDocument;
procedure AddTextElement(root : TDOMNode; Element : string; Text : string);
var
node : TDOMNode;
begin
Node := XMLDoc.createElement(Element);
root.AppendChild(node);
node.TextContent:= Text;
end;
var
Node,SubNode : TDOMNode;
i : integer;
begin
XMLDoc := TXMLDocument.Create;
Node := XMLDoc.CreateElement('Script');
XMLDoc.AppendChild(Node);
AddTextElement(node,'Name',Name);
AddTextElement(node,'Author',Author);
AddTextElement(node,'Version',Version);
AddTextElement(node,'Description',description);
AddTextElement(node,'AutoCheckUpdates', BoolToStr(AutoCheckUpdates,true));
SubNode := XMLDoc.CreateElement('Tags');
Node.AppendChild(SubNode);
for i := 0 to Tags.Count - 1 do
AddTextElement(SubNode,'Tag',Tags[i]);
SubNode := XMLDoc.CreateElement('Files');
Node.AppendChild(SubNode);
for i := 0 to Files.Count - 1 do
AddTextElement(SubNode,'File',Files[i]);
WriteXMLFile(XMLDoc,FileName);
XMLDoc.Free;
end;
procedure TLSimbaScript.Save(const MainDir: string);
begin
if not DirectoryExists(MainDir + 'General' + DirectorySeparator + Name) then
CreateDir(MainDir + 'General' + DirectorySeparator + Name);
SaveToFile(MainDir + 'General' + DirectorySeparator + Name + DirectorySeparator +
'info.xml');
end;
constructor TLSimbaScript.create;
begin
inherited;
AutoCheckUpdates:= true;
end;
end.