source: oup/current/Tools/MetaEditor.pas@ 244

Last change on this file since 244 was 244, checked in by alloc, 17 years ago
File size: 10.1 KB
RevLine 
[209]1unit MetaEditor;
[217]2
[209]3interface
[217]4
[209]5uses
6 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
[232]7 Dialogs, _BaseTemplate, ExtCtrls, VirtualTrees, StdCtrls, ComCtrls, Grids,
[233]8 MPHexEditor, Wrapgrid, VTHeaderPopup, Menus, _TreeElement;
[209]9
10type
[217]11 TForm_Meta = class(TForm_BaseTemplate)
[209]12 VST: TVirtualStringTree;
[217]13 splitter: TSplitter;
[232]14 rightPages: TPageControl;
15 tab_hex: TTabSheet;
16 tab_meta: TTabSheet;
17 panel_hex_actions: TPanel;
18 hex: TMPHexEditor;
19 splitter_hex_1: TSplitter;
20 value_viewer: TWrapGrid;
21 splitter_hex_2: TSplitter;
22 structviewer: TVirtualStringTree;
[233]23 value_viewer_context: TPopupMenu;
24 value_viewer_context_copy: TMenuItem;
25 value_viewer_context_copyasdec: TMenuItem;
26 value_viewer_context_copyasfloat: TMenuItem;
27 value_viewer_context_copyasbitset: TMenuItem;
28 value_viewer_context_copyasstring: TMenuItem;
29 value_viewer_context_copyashex: TMenuItem;
30 VTHPopup: TVTHeaderPopupMenu;
31 btn_export: TButton;
32 btn_import: TButton;
[238]33 vst_popup: TPopupMenu;
34 vst_newRoot: TMenuItem;
35 vst_setRoot: TMenuItem;
[209]36 procedure FormCreate(Sender: TObject);
[212]37 procedure VSTInitChildren(Sender: TBaseVirtualTree; Node: PVirtualNode;
38 var ChildCount: Cardinal);
[217]39 procedure FormClose(Sender: TObject; var Action: TCloseAction);
[214]40 procedure VSTFocusChanged(Sender: TBaseVirtualTree; Node: PVirtualNode;
41 Column: TColumnIndex);
42 procedure VSTFocusChanging(Sender: TBaseVirtualTree; OldNode,
43 NewNode: PVirtualNode; OldColumn, NewColumn: TColumnIndex;
44 var Allowed: Boolean);
[217]45 procedure VSTGetText(Sender: TBaseVirtualTree; Node: PVirtualNode;
46 Column: TColumnIndex; TextType: TVSTTextType; var CellText: WideString);
47 procedure VSTPaintText(Sender: TBaseVirtualTree;
48 const TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex;
49 TextType: TVSTTextType);
[238]50 procedure VSTGetPopupMenu(Sender: TBaseVirtualTree; Node: PVirtualNode;
51 Column: TColumnIndex; const P: TPoint; var AskParent: Boolean;
52 var PopupMenu: TPopupMenu);
53 procedure vst_setRootClick(Sender: TObject);
[239]54 procedure vst_newRootClick(Sender: TObject);
[241]55 procedure VSTGetHint(Sender: TBaseVirtualTree; Node: PVirtualNode;
56 Column: TColumnIndex; var LineBreakStyle: TVTTooltipLineBreakStyle;
57 var HintText: WideString);
[209]58 private
[233]59 root: TTreeElement;
[217]60 procedure NewCon(ID: Integer);
[209]61 public
[238]62 procedure SetRoot(TreeElem: TTreeElement);
[209]63 end;
64
65
66implementation
67{$R *.dfm}
[241]68uses _MetaManager, _MetaTypes, ConnectionManager, Data, _FileTypes, Main,
69 TypeDefs;
[209]70
71type
72 PNodeData = ^TNodeData;
73
74 TNodeData = record
[233]75 Field: TTreeElement;
[209]76 end;
77
78function AddVSTEntry(AVST: TCustomVirtualStringTree; ANode: PVirtualNode;
79 ARecord: TNodeData): PVirtualNode;
80var
81 Data: PNodeData;
82begin
83 Result := AVST.AddChild(ANode);
84 Data := AVST.GetNodeData(Result);
85 AVST.ValidateNode(Result, False);
86 Data^ := ARecord;
87end;
88
89
[217]90procedure TForm_Meta.NewCon(ID: Integer);
[238]91begin
92 if ID >= 0 then
93 SetRoot(ConManager.Connection[FConnectionID].MetaData.Root);
[241]94//SetRoot(ConManager.Connection[FConnectionID].MetaData.FileById[454]);
[238]95end;
96
97
98procedure TForm_Meta.SetRoot(TreeElem: TTreeElement);
[212]99var
100 i: Integer;
101 data: TNodeData;
102 node: PVirtualNode;
[244]103 basenode: PVirtualNode;
[212]104begin
[238]105 if FConnectionID <> TreeElem.ConnectionID then
106 SelectConnection(TreeElem.ConnectionID);
107 root := TreeElem;
108 VST.Clear;
109 VST.BeginUpdate;
[244]110 data.Field := root;
111 basenode := AddVSTEntry(VST, nil, data);
[238]112 for i := 0 to root.ChildCount - 1 do
[212]113 begin
[238]114 data.Field := root.Child[i];
[244]115 node := AddVSTEntry(VST, basenode, data);
[238]116 if data.Field.ChildCount > 0 then
[232]117 VST.HasChildren[node] := True;
[212]118 end;
[238]119 VST.EndUpdate;
[212]120end;
121
[217]122procedure TForm_Meta.VSTInitChildren(Sender: TBaseVirtualTree;
123 Node: PVirtualNode; var ChildCount: Cardinal);
[209]124var
[217]125 data: PNodeData;
126 newdata: TNodeData;
127 newnode: PVirtualNode;
[209]128 i: Integer;
129begin
[231]130 data := Sender.GetNodeData(node);
[233]131
132 if data.Field.ChildCount > 0 then
[232]133 begin
[233]134 for i := 0 to data.Field.ChildCount - 1 do
[232]135 begin
[233]136 newdata.Field := data.Field.Child[i];
[232]137 newnode := AddVSTEntry(TCustomVirtualStringTree(Sender), Node, newdata);
[233]138 if newdata.Field.ChildCount > 0 then
[232]139 Sender.HasChildren[newnode] := True;
140 end;
141 end;
[231]142 ChildCount := Sender.ChildCount[Node];
[209]143end;
144
145
[240]146
[214]147procedure TForm_Meta.VSTFocusChanged(Sender: TBaseVirtualTree;
148 Node: PVirtualNode; Column: TColumnIndex);
149var
150 data: PNodeData;
[240]151 ffile: TFile;
152//*******************************************************************
153 fs: TFileStream;
154//*******************************************************************
[214]155begin
156 data := Sender.GetNodeData(Node);
[240]157 ffile := nil;
[214]158 if data.Field is TFile then
[240]159 ffile := TFile(data.Field);
[241]160 if data.Field is _MetaTypes.TDatLink then
161 if Assigned(_MetaTypes.TDatLink(data.Field).TargetFile) then
162 ffile := TFile(_MetaTypes.TDatLink(data.Field).TargetFile);
[240]163 if Assigned(ffile) then
[214]164 begin
[240]165 if Assigned(ffile.Editor) then
[214]166 begin
[240]167 ffile.Editor.Align := alClient;
168 tab_meta.InsertControl(ffile.Editor);
169 ffile.Opened := True;
[214]170 end;
[240]171//*******************************************************************
[242]172// fs := TFileStream.Create('C:\Spiele\Oni\GameDataFolder\tests\'+IntToStr(ffile.FileInfo.ID)+'_recreated.hex', fmCreate);
173// ffile.ReCreateFile(fs);
174// fs.Free;
[240]175//*******************************************************************
[214]176 end;
177end;
178
[217]179
[214]180procedure TForm_Meta.VSTFocusChanging(Sender: TBaseVirtualTree; OldNode,
181 NewNode: PVirtualNode; OldColumn, NewColumn: TColumnIndex;
182 var Allowed: Boolean);
183var
184 data: PNodeData;
185 i: Integer;
186begin
187 data := Sender.GetNodeData(NewNode);
188 if data.Field is TFile then
189 begin
190 if Assigned(TFile(data.Field).Editor) then
191 Allowed := not TFile(data.Field).Opened
192 else
193 Allowed := True;
194 end;
195 if Allowed and Assigned(OldNode) then
196 begin
197 data := Sender.GetNodeData(OldNode);
198 if data.Field is TFile then
199 begin
200 if TFile(data.Field).Opened then
201 begin
[232]202 if tab_meta.ControlCount > 0 then
203 for i := 0 to tab_meta.ControlCount - 1 do
204 tab_meta.RemoveControl(tab_meta.Controls[i]);
[214]205 TFile(data.Field).Opened := False;
206 end;
207 end;
208 end;
209end;
210
[217]211
[209]212procedure TForm_Meta.VSTGetText(Sender: TBaseVirtualTree; Node: PVirtualNode;
213 Column: TColumnIndex; TextType: TVSTTextType; var CellText: WideString);
214var
215 Data: PNodeData;
216begin
217 Data := Sender.GetNodeData(Node);
218 CellText := '';
219 if TextType = ttNormal then
220 begin
221 case Column of
[241]222 0: CellText := Data.Field.Caption;
223 1: CellText := data.Field.VType;
[209]224 2:
[212]225 begin
[236]226 if Data.Field is TDataField then
227 CellText := TDataField(Data.Field).ValueAsString;
228 end;
[212]229 end;
[209]230 end;
231end;
232
[217]233
[212]234procedure TForm_Meta.VSTPaintText(Sender: TBaseVirtualTree;
235 const TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex;
236 TextType: TVSTTextType);
237var
238 Data: PNodeData;
239begin
240 Data := Sender.GetNodeData(Node);
241 if TextType = ttNormal then
242 begin
243 case Column of
244 0:
245 begin
246 if Data.Field is TFile then
[213]247 begin
[231]248 if Length(TFile(Data.Field).FileInfo.Name) = 0 then
[213]249 TargetCanvas.Font.Color := $C06060;
[231]250 if TFile(Data.Field).FileInfo.Size = 0 then
[213]251 TargetCanvas.Font.Color := $2020A0;
252 end;
[212]253 end;
254 end;
255 end;
256end;
257
[209]258
[217]259
[241]260procedure TForm_Meta.VSTGetHint(Sender: TBaseVirtualTree; Node: PVirtualNode;
261 Column: TColumnIndex; var LineBreakStyle: TVTTooltipLineBreakStyle;
262 var HintText: WideString);
263var
264 data: PNodeData;
265 CellText: WideString;
266
267 i: Integer;
268 links: TStrings;
[243]269 ifile: TFile;
[241]270begin
271 inherited;
272 if Assigned(Node) then
273 begin
274 VSTGetText(Sender, Node, Column, ttNormal, CellText);
275 if Length(CellText) > 0 then
276 begin
277 data := Sender.GetNodeData(Node);
278 if data.Field is TDataField then
279 begin
280 case Column of
281 0,1: HintText := TDataField(data.Field).Description;
282 2: HintText := '';
283 end;
284 end;
[243]285 if data.Field is TFile then
[241]286 begin
[243]287 ifile := TFile(data.Field);
288 case Column of
289 0: HintText :=
290 'FileID: ' + IntToStr(ifile.FileInfo.ID) + #13#10 +
291 'Name: ' + ifile.FileInfo.Name + #13#10 +
292 'Extension: ' + ifile.FileInfo.Extension + #13#10 +
293 '.dat-size: ' + IntToStr(ifile.FileInfo.Size) + #13#10;
[241]294 end;
295 end;
296 end;
297 end
298 else
299 HintText := '';
300end;
301
[238]302procedure TForm_Meta.VSTGetPopupMenu(Sender: TBaseVirtualTree;
303 Node: PVirtualNode; Column: TColumnIndex; const P: TPoint;
304 var AskParent: Boolean; var PopupMenu: TPopupMenu);
305var
306 data: PNodeData;
307begin
308 inherited;
309 AskParent := False;
310 if Assigned(Node) then
311 begin
312 Sender.Selected[Node] := True;
313 Sender.FocusedNode := Node;
314 data := Sender.GetNodeData(Node);
315 if Column = 0 then
316 begin
[241]317 if TTreeElement(data.Field).ChildCount > 0 then
[238]318 PopupMenu := vst_popup
319 else
320 PopupMenu := nil;
321 end;
322 end;
323end;
324
[239]325procedure TForm_Meta.vst_newRootClick(Sender: TObject);
326var
327 data: PNodeData;
328 form: TForm_BaseTemplate;
329begin
330 inherited;
331 data := VST.GetNodeData(VST.FocusedNode);
332 form := nil;
333 form := Form_Main.open_child('meta');
334 if form is TForm_Meta then
335 TForm_Meta(form).SetRoot(data.Field);
336end;
337
[238]338procedure TForm_Meta.vst_setRootClick(Sender: TObject);
339var
340 data: PNodeData;
341begin
342 inherited;
343 data := VST.GetNodeData(VST.FocusedNode);
344 SetRoot(data.Field);
345end;
346
[217]347procedure TForm_Meta.FormClose(Sender: TObject; var Action: TCloseAction);
[209]348begin
[229]349// Meta.Free;
[217]350 inherited;
[209]351end;
[217]352
353procedure TForm_Meta.FormCreate(Sender: TObject);
354begin
355 inherited;
356 OnNewConnection := NewCon;
357
358 VST.NodeDataSize := SizeOf(TNodeData);
359 VST.Font.Charset := AppSettings.CharSet;
360 VST.Clear;
361
362 UpdateConList;
363end;
364
[209]365end.
Note: See TracBrowser for help on using the repository browser.