2005-08-26 19:07:54 +00:00
|
|
|
program AMXX_Studio;
|
|
|
|
|
|
|
|
uses
|
2006-01-11 18:02:42 +00:00
|
|
|
madExcept,
|
|
|
|
madLinkDisAsm,
|
|
|
|
madListHardware,
|
|
|
|
madListProcesses,
|
|
|
|
madListModules,
|
2005-08-26 19:07:54 +00:00
|
|
|
Forms,
|
|
|
|
Windows,
|
2005-09-10 21:55:22 +00:00
|
|
|
Classes,
|
2005-08-26 19:07:54 +00:00
|
|
|
Messages,
|
2005-09-10 21:55:22 +00:00
|
|
|
SysUtils,
|
|
|
|
SciLexerMemo,
|
|
|
|
JvInspector,
|
2005-08-26 19:07:54 +00:00
|
|
|
UnitfrmMain in 'UnitfrmMain.pas' {frmMain},
|
|
|
|
UnitMainTools in 'UnitMainTools.pas',
|
|
|
|
UnitfrmSettings in 'UnitfrmSettings.pas' {frmSettings},
|
|
|
|
UnitLanguages in 'UnitLanguages.pas',
|
|
|
|
UnitfrmSelectColor in 'UnitfrmSelectColor.pas' {frmSelectColor},
|
|
|
|
UnitfrmInfo in 'UnitfrmInfo.pas' {frmInfo},
|
|
|
|
UnitCodeSnippets in 'UnitCodeSnippets.pas',
|
|
|
|
UnitCodeUtils in 'UnitCodeUtils.pas',
|
|
|
|
UnitfrmSearch in 'UnitfrmSearch.pas' {frmSearch},
|
|
|
|
UnitfrmReplace in 'UnitfrmReplace.pas' {frmReplace},
|
|
|
|
UnitfrmAllFilesForm in 'UnitfrmAllFilesForm.pas' {frmAllFilesForm},
|
|
|
|
UnitfrmGoToLine in 'UnitfrmGoToLine.pas' {frmGoToLine},
|
|
|
|
UnitfrmPluginsIniEditor in 'UnitfrmPluginsIniEditor.pas' {frmPluginsIniEditor},
|
|
|
|
UnitfrmSocketsTerminal in 'UnitfrmSocketsTerminal.pas' {frmSocketsTerminal},
|
|
|
|
UnitReadThread in 'UnitReadThread.pas',
|
|
|
|
UnitCodeExplorerUpdater in 'UnitCodeExplorerUpdater.pas',
|
|
|
|
UnitTextAnalyze in 'UnitTextAnalyze.pas',
|
|
|
|
UnitfrmHudMsgGenerator in 'UnitfrmHudMsgGenerator.pas' {frmHudMsgGenerator},
|
|
|
|
UnitCompile in 'UnitCompile.pas',
|
|
|
|
UnitfrmAutoIndent in 'UnitfrmAutoIndent.pas' {frmAutoIndent},
|
|
|
|
UnitfrmHTMLPreview in 'UnitfrmHTMLPreview.pas' {frmHTMLPreview},
|
|
|
|
UnitfrmMenuGenerator in 'UnitfrmMenuGenerator.pas' {frmMenuGenerator},
|
|
|
|
UnitCodeInspector in 'UnitCodeInspector.pas',
|
|
|
|
UnitfrmMOTDGen in 'UnitfrmMOTDGen.pas' {frmMOTDGen},
|
|
|
|
UnitMenuGenerators in 'UnitMenuGenerators.pas',
|
|
|
|
UnitfrmClose in 'UnitfrmClose.pas' {frmClose},
|
|
|
|
UnitfrmConnGen in 'UnitfrmConnGen.pas' {frmConnGen},
|
2005-09-03 20:00:46 +00:00
|
|
|
UnitPlugins in 'UnitPlugins.pas',
|
2005-10-30 10:33:16 +00:00
|
|
|
UnitfrmIRCPaster in 'UnitfrmIRCPaster.pas' {frmIRCPaster},
|
2005-11-18 23:35:58 +00:00
|
|
|
MyEditFileClasses in 'MyEditFileClasses.pas',
|
|
|
|
UnitfrmParamEdit in 'UnitfrmParamEdit.pas' {frmParamEdit},
|
|
|
|
UnitACCheck in 'UnitACCheck.pas';
|
2005-08-26 19:07:54 +00:00
|
|
|
|
2005-08-26 22:59:25 +00:00
|
|
|
{ Used components:
|
2005-08-26 23:22:30 +00:00
|
|
|
- JVCL 3.0
|
|
|
|
- FlatPack
|
|
|
|
- FlatStyle
|
|
|
|
- Toolbar2000, TBX, SpTBX, mbTBX Lib
|
|
|
|
- Scintilla and DelphiSci
|
|
|
|
}
|
2005-08-26 22:59:25 +00:00
|
|
|
|
2005-08-26 19:07:54 +00:00
|
|
|
{$R *.res}
|
|
|
|
|
2005-09-10 21:55:22 +00:00
|
|
|
var eCache: TStringList;
|
|
|
|
i: integer;
|
|
|
|
eExt: String;
|
2005-08-26 19:07:54 +00:00
|
|
|
begin
|
2005-09-09 16:49:41 +00:00
|
|
|
if (FindWindow('TfrmMain', 'AMXX-Studio') <> 0) and (FindWindow(nil, 'Delphi 7') = 0) then begin
|
2005-08-26 19:07:54 +00:00
|
|
|
if ParamCount > 0 then begin
|
|
|
|
for i := 1 to ParamCount do
|
2005-09-03 20:00:46 +00:00
|
|
|
SendStudioMsg(SCM_LOADFILE, ParamStr(i), 0);
|
2005-08-26 19:07:54 +00:00
|
|
|
end;
|
2005-10-07 21:52:48 +00:00
|
|
|
SetForegroundWindow(FindWindow('TfrmMain', 'AMXX-Studio'));
|
2005-09-04 13:03:34 +00:00
|
|
|
exit;
|
2005-08-26 19:07:54 +00:00
|
|
|
end;
|
2005-12-23 13:19:21 +00:00
|
|
|
|
2005-08-26 19:07:54 +00:00
|
|
|
Application.Initialize;
|
|
|
|
Application.Title := 'AMXX-Studio';
|
2005-09-10 21:55:22 +00:00
|
|
|
Application.CreateForm(TfrmMain, frmMain);
|
|
|
|
Application.CreateForm(TfrmAutoIndent, frmAutoIndent);
|
|
|
|
Application.CreateForm(TfrmSettings, frmSettings);
|
2005-11-18 23:35:58 +00:00
|
|
|
Application.CreateForm(TfrmParamEdit, frmParamEdit);
|
2005-09-10 21:55:22 +00:00
|
|
|
Application.OnMessage := frmMain.OnMessage;
|
|
|
|
Application.OnShortCut := frmMain.OnShortCut;
|
2005-10-07 21:52:48 +00:00
|
|
|
frmMain.sciEditor.Lines[5] := '#define PLUGIN "' + frmSettings.txtDefaultName.Text + '"';
|
|
|
|
frmMain.sciEditor.Lines[6] := '#define VERSION "' + frmSettings.txtDefaultVersion.Text + '"';
|
|
|
|
frmMain.sciEditor.Lines[7] := '#define AUTHOR "' + frmSettings.txtDefaultAuthor.Text + '"';
|
2005-09-10 21:55:22 +00:00
|
|
|
|
|
|
|
frmMain.sciPropertyLoader.FileName := ExtractFilePath(ParamStr(0)) + 'config\Editor.sci';
|
|
|
|
if FileExists(frmMain.sciPropertyLoader.FileName) then
|
|
|
|
frmMain.sciPropertyLoader.Load
|
|
|
|
else
|
|
|
|
frmMain.sciPropertyLoader.Save; // create new if it doesnt exist...
|
|
|
|
|
|
|
|
frmMain.sciEditor.Gutter1.Width := 40;
|
|
|
|
frmMain.sciEditor.Gutter1.MarginType := gutLineNumber;
|
|
|
|
LoadCodeSnippets('Pawn');
|
|
|
|
ResetToEnglish;
|
|
|
|
TJvCustomInspectorData.ItemRegister.Add(TJvInspectorTypeInfoRegItem.Create(TJvInspectorSelectionTextListItem, TypeInfo(TSelectionTextList)));
|
|
|
|
|
|
|
|
eCache := TStringList.Create;
|
|
|
|
if FileExists(ExtractFilePath(ParamStr(0)) + 'config\Cache.cfg') then
|
|
|
|
eCache.LoadFromFile(ExtractFilePath(ParamStr(0)) + 'config\Cache.cfg');
|
|
|
|
for i := 1 to ParamCount do begin
|
|
|
|
if eCache.IndexOf(ParamStr(i)) = -1 then
|
|
|
|
eCache.Add(ParamStr(i));
|
|
|
|
end;
|
|
|
|
|
|
|
|
for i := 0 to eCache.Count -1 do begin
|
|
|
|
if FileExists(eCache[i]) then begin
|
|
|
|
eExt := ExtractFileExt(eCache[i]);
|
|
|
|
eExt := LowerCase(eExt);
|
|
|
|
if (eExt = '.sma') or (eExt = '.inc') or (eExt = '.inl') then // Pawn files
|
|
|
|
PAWNProjects.Open(eCache[i])
|
|
|
|
else if (eExt = '.cpp') or (eExt = '.h') then // C++ files
|
|
|
|
CPPProjects.Open(eCache[i])
|
|
|
|
else if (eExt = '.htm') or (eExt = '.html') then // HTML files
|
|
|
|
OtherProjects.Open(eCache[i], 'HTML')
|
|
|
|
else if (eExt = '.sql') then // SQL databases
|
|
|
|
OtherProjects.Open(eCache[i], 'SQL')
|
|
|
|
else if (eExt = '.xml') then // XML files
|
|
|
|
OtherProjects.Open(eCache[i], 'XML')
|
|
|
|
else // Other files and/or Textfiles
|
|
|
|
OtherProjects.Open(eCache[i], 'null');
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
eCache.Free;
|
|
|
|
|
|
|
|
i := 0;
|
2006-04-10 18:05:08 +00:00
|
|
|
if PawnProjects.Count > 1 then begin
|
|
|
|
PawnProjects.Close(0, True);
|
2005-09-10 21:55:22 +00:00
|
|
|
i := 1;
|
|
|
|
end;
|
|
|
|
if CPPProjects.Count > 1 then begin
|
2006-04-10 18:05:08 +00:00
|
|
|
CPPProjects.Close(0, True);
|
2005-09-10 21:55:22 +00:00
|
|
|
i := 1;
|
|
|
|
end;
|
|
|
|
if OtherProjects.Count > 1 then begin
|
2006-04-10 18:05:08 +00:00
|
|
|
OtherProjects.Close(0, True);
|
2005-09-10 21:55:22 +00:00
|
|
|
i := 1;
|
|
|
|
end;
|
|
|
|
|
|
|
|
if i = 1 then begin
|
|
|
|
ActivateProjects(0, False); // Started := True is already set here
|
2006-04-10 18:05:08 +00:00
|
|
|
PAWNProjects.Activate(PawnProjects.Count -1, False, False);
|
2005-09-10 21:55:22 +00:00
|
|
|
end;
|
2005-10-07 21:52:48 +00:00
|
|
|
UpdateCI(frmMain.sciEditor.GetCurrentLineNumber);
|
2005-09-10 21:55:22 +00:00
|
|
|
|
|
|
|
Application.CreateForm(TfrmSelectColor, frmSelectColor);
|
|
|
|
Application.CreateForm(TfrmInfo, frmInfo);
|
|
|
|
Application.CreateForm(TfrmSearch, frmSearch);
|
|
|
|
Application.CreateForm(TfrmReplace, frmReplace);
|
|
|
|
Application.CreateForm(TfrmAllFilesForm, frmAllFilesForm);
|
|
|
|
Application.CreateForm(TfrmGoToLine, frmGoToLine);
|
|
|
|
Application.CreateForm(TfrmPluginsIniEditor, frmPluginsIniEditor);
|
|
|
|
Application.CreateForm(TfrmSocketsTerminal, frmSocketsTerminal);
|
|
|
|
Application.CreateForm(TfrmHudMsgGenerator, frmHudMsgGenerator);
|
|
|
|
Application.CreateForm(TfrmMenuGenerator, frmMenuGenerator);
|
|
|
|
Application.CreateForm(TfrmMOTDGen, frmMOTDGen);
|
|
|
|
Application.CreateForm(TfrmClose, frmClose);
|
|
|
|
Application.CreateForm(TfrmConnGen, frmConnGen);
|
|
|
|
Application.CreateForm(TfrmIRCPaster, frmIRCPaster);
|
|
|
|
if IEInstalled then
|
|
|
|
Application.CreateForm(TfrmHTMLPreview, frmHTMLPreview)
|
|
|
|
else
|
|
|
|
frmMain.mnuMOTDGenerator.Enabled := False;
|
|
|
|
LoadPlugins;
|
2005-08-26 19:07:54 +00:00
|
|
|
Application.Run;
|
|
|
|
end.
|