| 1 |
|
unit BinEdit; |
| 2 |
+ |
|
| 3 |
|
interface |
| 4 |
+ |
|
| 5 |
|
uses |
| 6 |
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, |
| 7 |
< |
Dialogs, Template, StdCtrls, ExtCtrls, VirtualTrees, Grids, Wrapgrid, |
| 8 |
< |
MPHexEditor, VTHeaderPopup, Menus, StrUtils, Clipbrd, |
| 9 |
< |
Data, TypeDefs, ConnectionManager, Buttons; |
| 7 |
> |
Dialogs, VirtualTrees, Grids, Wrapgrid, MPHexEditor, |
| 8 |
> |
StdCtrls, Menus, ExtCtrls, Buttons, |
| 9 |
> |
Data, TypeDefs, ConnectionManager, |
| 10 |
> |
_TemplateFileList, VTHeaderPopup, ComCtrls; |
| 11 |
|
|
| 12 |
|
type |
| 13 |
< |
TForm_BinEdit = class(TForm_ToolTemplate) |
| 13 |
> |
TForm_BinEdit = class(TForm_TemplateFileList) |
| 14 |
> |
panel_imexport: TPanel; |
| 15 |
> |
btn_export: TButton; |
| 16 |
> |
btn_import: TButton; |
| 17 |
|
hex: TMPHexEditor; |
| 18 |
|
Splitter2: TSplitter; |
| 19 |
|
value_viewer: TWrapGrid; |
| 14 |
– |
VST: TVirtualStringTree; |
| 20 |
|
Splitter3: TSplitter; |
| 21 |
+ |
VST: TVirtualStringTree; |
| 22 |
+ |
VTHPopup: TVTHeaderPopupMenu; |
| 23 |
|
value_viewer_context: TPopupMenu; |
| 24 |
|
value_viewer_context_copy: TMenuItem; |
| 25 |
|
value_viewer_context_copyasdec: TMenuItem; |
| 27 |
|
value_viewer_context_copyasbitset: TMenuItem; |
| 28 |
|
value_viewer_context_copyasstring: TMenuItem; |
| 29 |
|
value_viewer_context_copyashex: TMenuItem; |
| 23 |
– |
VTHPopup: TVTHeaderPopupMenu; |
| 24 |
– |
procedure FormCreate(Sender: TObject); |
| 30 |
|
procedure NewFile(fileinfo: TFileInfo); |
| 31 |
|
|
| 27 |
– |
procedure FormKeyUp(Sender: TObject; var Key: Word; Shift: TShiftState); |
| 28 |
– |
procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean); |
| 29 |
– |
|
| 30 |
– |
procedure hexKeyUp(Sender: TObject; var Key: Word; Shift: TShiftState); |
| 31 |
– |
procedure hexSelectionChanged(Sender: TObject); |
| 32 |
– |
procedure hexChange(Sender: TObject); |
| 33 |
– |
|
| 32 |
|
procedure LoadDat(_fileid: Integer); |
| 33 |
|
function Save: Boolean; |
| 34 |
< |
function GetValue(datatype: Word; offset: LongWord): String; |
| 35 |
< |
procedure SetNewValue(datatype: Word; offset: LongWord; Value: String); |
| 34 |
> |
function GetValue(datatype: Word; offset: Integer): String; |
| 35 |
> |
procedure SetNewValue(datatype: Word; offset: Integer; Value: String); |
| 36 |
|
|
| 37 |
|
procedure WriteStructureInfos; |
| 38 |
|
procedure ClearStructViewer; |
| 41 |
– |
procedure VSTDblClick(Sender: TObject); |
| 42 |
– |
procedure VSTFocusChanged(Sender: TBaseVirtualTree; Node: PVirtualNode; |
| 43 |
– |
Column: TColumnIndex); |
| 44 |
– |
procedure VTHPopupColumnChange(const Sender: TBaseVirtualTree; |
| 45 |
– |
const Column: TColumnIndex; Visible: Boolean); |
| 46 |
– |
procedure VSTHeaderDragged(Sender: TVTHeader; Column: TColumnIndex; |
| 47 |
– |
OldPosition: Integer); |
| 48 |
– |
procedure VSTGetText(Sender: TBaseVirtualTree; Node: PVirtualNode; |
| 49 |
– |
Column: TColumnIndex; TextType: TVSTTextType; var CellText: WideString); |
| 39 |
|
|
| 40 |
|
procedure ClearValues; |
| 41 |
|
procedure WriteValues; |
| 42 |
+ |
|
| 43 |
+ |
procedure FormCreate(Sender: TObject); |
| 44 |
+ |
procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean); |
| 45 |
+ |
procedure hexChange(Sender: TObject); |
| 46 |
+ |
procedure hexKeyUp(Sender: TObject; var Key: Word; Shift: TShiftState); |
| 47 |
+ |
procedure hexSelectionChanged(Sender: TObject); |
| 48 |
|
procedure value_viewerDblClick(Sender: TObject); |
| 49 |
< |
procedure value_viewer_context_copyClick(Sender: TObject); |
| 49 |
> |
procedure FormKeyUp(Sender: TObject; var Key: Word; Shift: TShiftState); |
| 50 |
> |
procedure value_viewer_contextPopup(Sender: TObject); |
| 51 |
|
procedure value_viewerMouseDown(Sender: TObject; Button: TMouseButton; |
| 52 |
|
Shift: TShiftState; X, Y: Integer); |
| 53 |
< |
procedure value_viewer_contextPopup(Sender: TObject); |
| 53 |
> |
procedure value_viewer_context_copyClick(Sender: TObject); |
| 54 |
> |
procedure VSTDblClick(Sender: TObject); |
| 55 |
> |
procedure VSTFocusChanged(Sender: TBaseVirtualTree; Node: PVirtualNode; |
| 56 |
> |
Column: TColumnIndex); |
| 57 |
> |
procedure VSTGetText(Sender: TBaseVirtualTree; Node: PVirtualNode; |
| 58 |
> |
Column: TColumnIndex; TextType: TVSTTextType; var CellText: WideString); |
| 59 |
> |
procedure VSTHeaderDragged(Sender: TVTHeader; Column: TColumnIndex; |
| 60 |
> |
OldPosition: Integer); |
| 61 |
> |
procedure VTHPopupColumnChange(const Sender: TBaseVirtualTree; |
| 62 |
> |
const Column: TColumnIndex; Visible: Boolean); |
| 63 |
|
private |
| 64 |
|
fileid: Integer; |
| 65 |
|
ConID: Integer; |
| 66 |
+ |
rawlist: TRawDataList; |
| 67 |
|
public |
| 68 |
|
end; |
| 69 |
|
|
| 64 |
– |
var |
| 65 |
– |
Form_BinEdit: TForm_BinEdit; |
| 66 |
– |
|
| 70 |
|
implementation |
| 68 |
– |
|
| 69 |
– |
uses ValueEdit, Main, Functions, DatStructureLoader{, RawEdit}; |
| 71 |
|
{$R *.dfm} |
| 72 |
+ |
uses ValueEdit, Main, Functions, DatStructureLoader, RawEdit, RawList, |
| 73 |
+ |
StrUtils, Clipbrd, _TemplateFile; |
| 74 |
+ |
|
| 75 |
|
|
| 76 |
|
type |
| 77 |
|
PNodeData = ^TNodeData; |
| 118 |
|
// |
| 119 |
|
end; |
| 120 |
|
|
| 121 |
+ |
|
| 122 |
|
procedure TForm_BinEdit.NewFile(fileinfo: TFileInfo); |
| 123 |
|
begin |
| 124 |
|
LoadDat(fileinfo.ID); |
| 144 |
|
procedure TForm_BinEdit.LoadDat(_fileid: Integer); |
| 145 |
|
var |
| 146 |
|
mem: TMemoryStream; |
| 142 |
– |
Data: TByteData; |
| 147 |
|
begin |
| 148 |
|
if ConID <> -1 then |
| 149 |
|
begin |
| 165 |
|
Self.ClearStructViewer; |
| 166 |
|
mem := nil; |
| 167 |
|
ConManager.Connection[ConID].LoadDatFile(fileid, TStream(mem)); |
| 168 |
+ |
rawlist := ConManager.Connection[ConID].GetRawList(fileid); |
| 169 |
|
hex.LoadFromStream(mem); |
| 170 |
|
mem.Free; |
| 171 |
|
ClearValues; |
| 178 |
|
Self.ClearStructViewer; |
| 179 |
|
ClearValues; |
| 180 |
|
hex.DataSize := 0; |
| 181 |
+ |
SetLength(rawlist, 0); |
| 182 |
|
end; |
| 183 |
|
end; |
| 184 |
|
|
| 185 |
|
|
| 186 |
|
|
| 187 |
< |
function TForm_BinEdit.GetValue(datatype: Word; offset: LongWord): String; |
| 187 |
> |
function TForm_BinEdit.GetValue(datatype: Word; offset: Integer): String; |
| 188 |
|
var |
| 189 |
|
Data: TByteData; |
| 190 |
< |
i: Word; |
| 190 |
> |
i: Integer; |
| 191 |
|
floatformat: TFormatSettings; |
| 192 |
|
begin |
| 193 |
|
floatformat.DecimalSeparator := '.'; |
| 223 |
|
10: |
| 224 |
|
Result := IntToBin(hex.Data[offset]); |
| 225 |
|
11: |
| 226 |
< |
Result := '0x' + IntToHex(ConManager.Connection[ConID].GetRawInfo(fileid, offset).RawAddr, 8); |
| 226 |
> |
begin |
| 227 |
> |
if Length(rawlist) > 0 then |
| 228 |
> |
begin |
| 229 |
> |
for i := 0 to High(rawlist) do |
| 230 |
> |
if rawlist[i].SrcOffset = offset then |
| 231 |
> |
begin |
| 232 |
> |
if rawlist[i].RawAddr > 0 then |
| 233 |
> |
Result := '0x' + IntToHex(rawlist[i].RawAddr, 8) |
| 234 |
> |
else |
| 235 |
> |
Result := 'unused'; |
| 236 |
> |
Break; |
| 237 |
> |
end; |
| 238 |
> |
if i > High(rawlist) then |
| 239 |
> |
Result := 'unused'; |
| 240 |
> |
end; |
| 241 |
> |
end; |
| 242 |
|
12: |
| 243 |
< |
Result := FormatNumber(hex.Data[offset + 1] + hex.Data[offset + 2] * 256 + |
| 244 |
< |
hex.Data[offset + 3] * 256 * 256, 5, '0'); |
| 243 |
> |
if hex.Data[offset] = 1 then |
| 244 |
> |
Result := FormatNumber(hex.Data[offset + 1] + hex.Data[offset + 2] * 256 + |
| 245 |
> |
hex.Data[offset + 3] * 256 * 256, 5, '0') |
| 246 |
> |
else |
| 247 |
> |
Result := 'no link'; |
| 248 |
|
13: |
| 249 |
|
Result := IntToStr(hex.Data[offset]); |
| 250 |
|
14: |
| 297 |
|
|
| 298 |
|
procedure TForm_BinEdit.WriteStructureInfos; |
| 299 |
|
var |
| 300 |
< |
i, j: LongWord; |
| 300 |
> |
i, j: Integer; |
| 301 |
|
pdata: PNodeData; |
| 302 |
|
Data: TNodeData; |
| 303 |
|
node: PVirtualNode; |
| 331 |
|
begin |
| 332 |
|
if Pos('#', SubName) > 0 then |
| 333 |
|
begin |
| 334 |
< |
Data.Offset := HexToLong(MidStr(SubName, Pos('#', SubName) + 1, 8)); |
| 335 |
< |
Data.Value := |
| 334 |
> |
Data.Offset := StrToInt('$'+MidStr(SubName, Pos('#', SubName) + 1, 8)); |
| 335 |
> |
Data.Value := '$' + |
| 336 |
|
MidStr(SubName, PosEx('#', SubName, Pos('#', SubName) + 1) + 1, 8); |
| 337 |
|
Data.Caption := MidStr(SubName, 1, Pos('#', SubName) - 1); |
| 338 |
|
Data.Description := SubDesc; |
| 399 |
|
i, j: Integer; |
| 400 |
|
Data: TByteData; |
| 401 |
|
str: String; |
| 402 |
< |
Value: LongWord; |
| 402 |
> |
Value: Integer; |
| 403 |
|
floatformat: TFormatSettings; |
| 404 |
|
begin |
| 405 |
|
floatformat.DecimalSeparator := '.'; |
| 482 |
|
str := ''; |
| 483 |
|
if hex.SelCount = 0 then |
| 484 |
|
begin |
| 485 |
< |
while (hex.Data[hex.SelStart + j] > 0) and ((hex.SelStart + j) < hex.DataSize) do |
| 485 |
> |
while (hex.SelStart + j) < hex.DataSize do |
| 486 |
|
begin |
| 487 |
+ |
if hex.Data[hex.SelStart + j] = 0 then |
| 488 |
+ |
Break; |
| 489 |
|
if hex.Data[hex.selstart + j] >= 32 then |
| 490 |
|
str := str + Char(hex.Data[hex.SelStart + j]) |
| 491 |
|
else |
| 514 |
|
function TForm_BinEdit.Save: Boolean; |
| 515 |
|
var |
| 516 |
|
mem: TMemoryStream; |
| 517 |
< |
i: LongWord; |
| 517 |
> |
i: Integer; |
| 518 |
|
begin |
| 519 |
|
case MessageBox(Self.Handle, PChar('Save changes to file ' + |
| 520 |
|
ConManager.Connection[ConID].GetFileInfo(fileid).Name + '?'), PChar('Data changed...'), |
| 696 |
|
procedure TForm_BinEdit.value_viewer_context_copyClick(Sender: TObject); |
| 697 |
|
var |
| 698 |
|
Name: String; |
| 699 |
< |
Value: LongWord; |
| 699 |
> |
Value: Integer; |
| 700 |
|
begin |
| 701 |
|
Name := TMenuItem(Sender).Name; |
| 702 |
|
if Pos('asstring', Name) > 0 then |
| 759 |
|
var |
| 760 |
|
node: PVirtualNode; |
| 761 |
|
nodedata: PNodeData; |
| 762 |
< |
form: TForm_ToolTemplate; |
| 762 |
> |
rawinfo: TRawDataInfo; |
| 763 |
> |
form: TForm_TemplateFileList; |
| 764 |
|
begin |
| 765 |
|
if VST.FocusedColumn = 3 then |
| 766 |
|
begin |
| 775 |
|
end |
| 776 |
|
else |
| 777 |
|
begin |
| 778 |
< |
if nodedata.DataType = 11 then |
| 778 |
> |
if (nodedata.DataType = 11) and (nodedata.Value <> 'unused') then |
| 779 |
|
begin |
| 780 |
< |
if ConManager.Connection[ConID].GetRawInfo(fileid, nodedata.offset).RawSize > 0 then |
| 781 |
< |
Form_Main.open_child('rawedit', ConID, fileid); |
| 780 |
> |
rawinfo := ConManager.Connection[ConID].GetRawInfo(fileid, nodedata.offset); |
| 781 |
> |
if rawinfo.RawSize > 0 then |
| 782 |
> |
begin |
| 783 |
> |
form := nil; |
| 784 |
> |
form := TForm_TemplateFileList(Form_Main.open_child('rawedit', ConID, fileid)); |
| 785 |
> |
if Assigned(form) then |
| 786 |
> |
TForm_RawEdit(form).LoadRaw(rawinfo); |
| 787 |
> |
end; |
| 788 |
|
end; |
| 789 |
< |
if nodedata.DataType = 12 then |
| 789 |
> |
if (nodedata.DataType = 12) and (nodedata.Value <> 'no link') then |
| 790 |
|
begin |
| 791 |
|
if (StrToInt(nodedata.Value) < ConManager.Connection[ConID].GetFileCount) and |
| 792 |
|
(StrToInt(nodedata.Value) > 0) and |
| 800 |
|
end; |
| 801 |
|
if (nodedata.DataType >= 100) and (nodedata.DataType <= 300) then |
| 802 |
|
begin |
| 803 |
< |
form := Form_Main.open_child('binedit', ConID, -1); |
| 803 |
> |
form := TForm_TemplateFileList(Form_Main.open_child('binedit', ConID)); |
| 804 |
|
if Assigned(form) then |
| 805 |
|
form.SetFileFilters(nodedata.Value, '', False); |
| 806 |
|
end; |
| 826 |
|
else |
| 827 |
|
begin |
| 828 |
|
hex.SelStart := Data.Offset; |
| 829 |
< |
hex.SelEnd := Data.Offset + HexToLong(Data.Value) - 1; |
| 829 |
> |
hex.SelEnd := Data.Offset + StrToInt(Data.Value) - 1; |
| 830 |
|
end; |
| 831 |
|
end; |
| 832 |
|
|
| 857 |
|
if Data.DataType > 0 then |
| 858 |
|
CellText := Data.Value //GetValue(data.DataType, data.Offset) |
| 859 |
|
else if Length(Data.Value) > 0 then |
| 860 |
< |
CellText := IntToStr(HexToLong(Data.Value)) + ' Bytes'; |
| 860 |
> |
CellText := IntToStr(StrToInt(Data.Value)) + ' Bytes'; |
| 861 |
|
4: |
| 862 |
|
CellText := Data.Description; |
| 863 |
|
end; |
| 888 |
|
|
| 889 |
|
|
| 890 |
|
|
| 891 |
< |
procedure TForm_BinEdit.SetNewValue(datatype: Word; offset: LongWord; Value: String); |
| 891 |
> |
procedure TForm_BinEdit.SetNewValue(datatype: Word; offset: Integer; Value: String); |
| 892 |
|
var |
| 893 |
|
Data: TByteData; |
| 894 |
|
value_int: LongWord; |
| 955 |
|
|
| 956 |
|
procedure TForm_BinEdit.value_viewerDblClick(Sender: TObject); |
| 957 |
|
var |
| 958 |
< |
offset: LongWord; |
| 958 |
> |
offset: Integer; |
| 959 |
|
datatype: Word; |
| 960 |
|
objectname: String; |
| 961 |
|
Value: String; |
| 990 |
|
|
| 991 |
|
|
| 992 |
|
|
| 960 |
– |
|
| 993 |
|
procedure TForm_BinEdit.FormKeyUp(Sender: TObject; var Key: Word; Shift: TShiftState); |
| 994 |
|
begin |
| 995 |
|
if (Shift = [ssCtrl]) and (Key = 83) then |