This repository was archived by the owner on Aug 21, 2024. It is now read-only.
File tree 4 files changed +20
-5
lines changed
4 files changed +20
-5
lines changed Original file line number Diff line number Diff line change @@ -115,6 +115,7 @@ TNamedCollectionItemClass = class of TNamedCollectionItem;
115
115
THashedCollection = class (TCollection)
116
116
private
117
117
FHash: TFPHashObjectList;
118
+
118
119
protected
119
120
procedure ItemIdentifierChanged (Item: TCollectionItem; AOldName: String; ANewName: String); virtual ;
120
121
procedure ItemAdded (Item: TCollectionItem); virtual ;
@@ -132,6 +133,8 @@ THashedCollection = class(TCollection)
132
133
procedure Remove (AIdentifier: String);
133
134
134
135
function FindItem (const AName: String): TNamedCollectionItem;
136
+
137
+ procedure SortByDisplayName ;
135
138
end ;
136
139
137
140
@@ -564,6 +567,16 @@ function THashedCollection.FindItem(const AName: String): TNamedCollectionItem;
564
567
Result := TNamedCollectionItem(Items[idx]);
565
568
end ;
566
569
570
+ function CompareByDisplayName (Item1, Item2: TCollectionItem): Integer;
571
+ begin
572
+ Result := CompareStr(Item1.DisplayName,Item2.DisplayName);
573
+ end ;
574
+
575
+ procedure THashedCollection.SortByDisplayName ;
576
+ begin
577
+ Sort(@CompareByDisplayName);
578
+ end ;
579
+
567
580
{ TNamedCollectionItem }
568
581
569
582
procedure TNamedCollectionItem.SetIdentifier (AValue: AnsiString);
Original file line number Diff line number Diff line change @@ -108,7 +108,6 @@ function filter_stub(ATarget: TBaseInfo): Boolean;
108
108
Result := True;
109
109
end ;
110
110
111
-
112
111
function FillItems (ATarget: TStrings; AFullList: TStrings; ASelected: AnsiString): integer;
113
112
var
114
113
i: Integer;
@@ -122,7 +121,7 @@ function FillItems(ATarget: TStrings; AFullList: TStrings; ASelected: AnsiString
122
121
info := AFullList.Objects[i] as TBaseInfo;
123
122
if info.IsValid then
124
123
begin
125
- ATarget.AddObject(info.Name + ' ( ' +info.Identifier+ ' ) ' ,info);
124
+ ATarget.AddObject(info.Name ,info);
126
125
if (ASelected <>' ' ) and (info.Identifier = ASelected) then
127
126
begin
128
127
Result := ATarget.Count - 1 ;
Original file line number Diff line number Diff line change @@ -550,7 +550,7 @@ TResolveRequest = record
550
550
FCreatureInfos: TCreatureInfos;
551
551
FHeroInfos: THeroInfos;
552
552
FArtifactInfos: TArtifactInfos;
553
- FArtifactSlotMaps: array [0 ..ARTIFACT_SLOT_COUNT-1 ] of TStrings ;
553
+ FArtifactSlotMaps: array [0 ..ARTIFACT_SLOT_COUNT-1 ] of TStringList ;
554
554
FSlotIds: TSlotMap;
555
555
556
556
FResolveRequests: TResolveRequests;
@@ -1368,7 +1368,9 @@ constructor TListsManager.Create(AOwner: TComponent);
1368
1368
1369
1369
for i in [0 ..ARTIFACT_SLOT_COUNT-1 ] do
1370
1370
begin
1371
- FArtifactSlotMaps[i] := CrStrList;
1371
+ FArtifactSlotMaps[i] := TStringList.Create;
1372
+ FArtifactSlotMaps[i].Sorted:=false;
1373
+ FArtifactSlotMaps[i].Duplicates:=dupAccept;
1372
1374
end ;
1373
1375
1374
1376
FHeroInfos := THeroInfos.Create(self);
@@ -2076,6 +2078,7 @@ procedure TListsManager.Load(AProgess: IProgressCallback; APaths: TModdedConfigP
2076
2078
2077
2079
FDestreamer.JSONToObjectEx(FCombinedConfig, ATarget);
2078
2080
2081
+ ATarget.SortByDisplayName;
2079
2082
finally
2080
2083
FCombinedConfig.Free;
2081
2084
FConfig.Free;
Original file line number Diff line number Diff line change 29
29
<AutoIncrementBuild Value =" True" />
30
30
<MinorVersionNr Value =" 1" />
31
31
<RevisionNr Value =" 14" />
32
- <BuildNr Value =" 143 " />
32
+ <BuildNr Value =" 144 " />
33
33
<Attributes pvaPreRelease =" True" />
34
34
<StringTable OriginalFilename =" vcmieditor.exe" ProductName =" VCMI" ProductVersion =" 0.99" />
35
35
</VersionInfo >
You can’t perform that action at this time.
0 commit comments