This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathfilesystem_base.pas
128 lines (91 loc) · 3.35 KB
/
filesystem_base.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{ This file is a part of Map editor for VCMI project
Copyright (C) 2013-2017 Alexander Shishkin [email protected]
This source 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 2 of the License, or (at your option) any later
version.
This code 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.
A copy of the GNU General Public License is available on the World Wide Web at
<http://www.gnu.org/copyleft/gpl.html>. You can also obtain it by writing to the Free Software Foundation, Inc., 59
Temple Place - Suite 330, Boston, MA 02111-1307, USA.
}
unit filesystem_base;
{$I compilersetup.inc}
{$INTERFACES CORBA}
interface
uses
Classes, SysUtils, Types;
type
TResourceType = (Text, Json, Animation, Mask, Image);
TResourceTypes = set of TResourceType;
IResource = interface
procedure LoadFromStream(AFileName: AnsiString; AStream: TStream);
end;
{ TResourceLoader }
IResourceLoader = interface ['{6BBEC2EA-75F4-4836-B25B-2F68B25091F2}']
(*
AResource - resource object to load
AResType - type of resourse
AName - relative path + filename .w\o ext
*)
procedure LoadResource(AResource: IResource; AResType: TResourceType; AName: string);
procedure LoadResourceCombined(AResource: IResource; AResType: TResourceType; AName: string);
function ExistsResource(AResType: TResourceType; AName: string): boolean;
function TryLoadResource(AResource: IResource; AResType: TResourceType; AName: string):boolean;
function GetModDepenencies(AModId: AnsiString): TStringDynArray;
function GetEnabledMods: TStringDynArray;
end;
{ TBaseResource }
TBaseResource = class abstract (TObject, IResource)
private
FPath: AnsiString;
FTyp: TResourceType;
public
constructor Create(AType: TResourceType; APath: AnsiString);
property Typ: TResourceType read FTyp;
property Path: AnsiString read FPath;
procedure LoadFromStream(AFileName: AnsiString; AStream: TStream); virtual; abstract;
procedure Load(ALoader: IResourceLoader); virtual;
function TryLoad(ALoader: IResourceLoader): Boolean; virtual;
end;
{ TFSConsumer }
TFSConsumer = class abstract (TComponent)
private
FResourceLoader: IResourceLoader;
public
constructor Create(AOwner: TComponent); override;
property ResourceLoader:IResourceLoader read FResourceLoader;
end;
implementation
{ TBaseResource }
constructor TBaseResource.Create(AType: TResourceType; APath: AnsiString);
begin
FTyp:=AType;
FPath:=APath;
end;
procedure TBaseResource.Load(ALoader: IResourceLoader);
begin
ALoader.LoadResource(Self, Typ, Path);
end;
function TBaseResource.TryLoad(ALoader: IResourceLoader): Boolean;
begin
Result := ALoader.TryLoadResource(Self, Typ, Path);
end;
{ TFSConsumer }
constructor TFSConsumer.Create(AOwner: TComponent);
var
rl: IResourceLoader;
begin
inherited Create(AOwner);
if AOwner.GetInterface(IResourceLoader,rl) then
begin
FResourceLoader := rl;
end
else
if AOwner is TFSConsumer then
begin
FResourceLoader := (AOwner as TFSConsumer).ResourceLoader;
end;
end;
end.