mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-25 18:52:15 -05:00
DTM shell with some comments.
git-svn-id: http://www.villavu.com/repositories/merlijn/mufasa@75 3f818213-9676-44b0-a9b4-5e4c4e03d09d
This commit is contained in:
parent
4a6987a777
commit
f1a223473d
@ -5,7 +5,7 @@ unit Client;
|
|||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, SysUtils, MufasaTypes, Window, Input, Files, Finder,Bitmaps;
|
Classes, SysUtils, MufasaTypes, Window, Input, Files, Finder, Bitmaps, dtm;
|
||||||
|
|
||||||
type
|
type
|
||||||
TClient = class(TObject)
|
TClient = class(TObject)
|
||||||
@ -18,6 +18,7 @@ type
|
|||||||
MFiles: TMFiles;
|
MFiles: TMFiles;
|
||||||
MFinder: TMFinder;
|
MFinder: TMFinder;
|
||||||
MBitmaps : TMBitmaps;
|
MBitmaps : TMBitmaps;
|
||||||
|
MDTM: TMDTM;
|
||||||
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
@ -33,10 +34,12 @@ begin
|
|||||||
MFiles := TMFiles.Create;
|
MFiles := TMFiles.Create;
|
||||||
MFinder := TMFinder.Create(Self);
|
MFinder := TMFinder.Create(Self);
|
||||||
MBitmaps := TMBitmaps.Create(self);
|
MBitmaps := TMBitmaps.Create(self);
|
||||||
|
MDTM := MDTM.Create(self);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
destructor TClient.Destroy;
|
destructor TClient.Destroy;
|
||||||
begin
|
begin
|
||||||
|
MDTM.Free;
|
||||||
MBitmaps.Free;
|
MBitmaps.Free;
|
||||||
MFinder.Free;
|
MFinder.Free;
|
||||||
MFiles.Free;
|
MFiles.Free;
|
||||||
@ -44,6 +47,7 @@ begin
|
|||||||
MWindow.Free;
|
MWindow.Free;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
inherited;
|
inherited;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
57
Units/MMLCore/dtm.pas
Normal file
57
Units/MMLCore/dtm.pas
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
unit dtm;
|
||||||
|
|
||||||
|
{$mode objfpc}{$H+}
|
||||||
|
|
||||||
|
interface
|
||||||
|
|
||||||
|
uses
|
||||||
|
Classes, SysUtils;
|
||||||
|
|
||||||
|
type
|
||||||
|
TMDTM = class(TObject)
|
||||||
|
constructor Create(Owner: TObject);
|
||||||
|
destructor Destroy; override;
|
||||||
|
private
|
||||||
|
Client: TObject;
|
||||||
|
|
||||||
|
end;
|
||||||
|
|
||||||
|
{
|
||||||
|
I am not sure wether I should simply copy and paste the old DTM implementation,
|
||||||
|
or rewrite it from scratch.
|
||||||
|
|
||||||
|
I recall there was something partially wrong with SCAR-alike DTM conversions
|
||||||
|
to Mufasa DTM's...
|
||||||
|
|
||||||
|
The old DTM system problaby doesn't perform that well, but seems to be quite
|
||||||
|
stable and complete.
|
||||||
|
|
||||||
|
If I would rewrite it from scratch, it would probably be faster, and
|
||||||
|
hopefully more efficient.That won't be too hard, especially since I have
|
||||||
|
direct data access now. (TClient FTW!)
|
||||||
|
|
||||||
|
Rewrite from scratch it will be, I guess.
|
||||||
|
And AreaShape will be turned into a {$I }, inline simply doesn't cut it.
|
||||||
|
|
||||||
|
~Wizz
|
||||||
|
}
|
||||||
|
|
||||||
|
implementation
|
||||||
|
uses
|
||||||
|
Client;
|
||||||
|
|
||||||
|
constructor TMDTM.Create(Owner: TObject);
|
||||||
|
begin
|
||||||
|
inherited Create;
|
||||||
|
Self.Client := Owner;
|
||||||
|
end;
|
||||||
|
|
||||||
|
destructor TMDTM.Destroy;
|
||||||
|
|
||||||
|
begin
|
||||||
|
//Something
|
||||||
|
inherited Destroy;
|
||||||
|
end;
|
||||||
|
|
||||||
|
end.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user