-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathShopByItemsForm.pas
376 lines (335 loc) · 10.7 KB
/
ShopByItemsForm.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
unit ShopByItemsForm;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ComCtrls, CheckLst, Menus,
InflatablesList_ShopSelectArray,
InflatablesList_Manager;
type
TfShopByItemsForm = class(TForm)
lblItems: TLabel;
clbItems: TCheckListBox;
lblShops: TLabel;
lvShops: TListView;
pmnItems: TPopupMenu;
mniSL_UnselectAll: TMenuItem;
procedure FormCreate(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure clbItemsClickCheck(Sender: TObject);
procedure clbItemsDrawItem(Control: TWinControl; aIndex: Integer;
Rect: TRect; State: TOwnerDrawState);
procedure mniSL_UnselectAllClick(Sender: TObject);
private
{ Private declarations }
fDrawBuffer: TBitmap;
fILManager: TILManager;
fWorkTable: TILCountedDynArraySelectionShops;
procedure BuildTable;
procedure RecountShops;
procedure FillItems;
procedure FillShops;
procedure UpdateSelCount;
public
{ Public declarations }
procedure Initialize(ILManager: TILManager);
procedure Finalize;
procedure ShowSelection;
end;
var
fShopByItemsForm: TfShopByItemsForm;
implementation
{$R *.dfm}
uses
InflatablesList_Utils,
InflatablesList_LocalStrings,
InflatablesList_ShopSelectItemsArray,
InflatablesList_Item;
procedure TfShopByItemsForm.BuildTable;
var
i,j: Integer;
Index: Integer;
Temp: TILSelectionShopEntry;
Entry: TILShopSelectItemEntry;
begin
// enumerate existing shops by name
CDA_Init(fWorkTable);
For i := fILManager.ItemLowIndex to fILManager.ItemHighIndex do
If fILManager[i].DataAccessible and (fILManager[i].ShopsUsefulCount > 0) then
For j := fILManager[i].ShopLowIndex to fILManager[i].ShopHighIndex do
begin
Temp.ShopName := fILManager[i][j].Name;
Index := CDA_IndexOf(fWorkTable,Temp);
If not CDA_CheckIndex(fWorkTable,Index) then
begin
// shop is not in the table, add it
CDA_Init(Temp.Items);
Index := CDA_Add(fWorkTable,Temp);
end;
If fILManager[i][j].IsAvailableHere(True) then
begin
Entry.ItemObject := fILManager[i];
Entry.Price := fILManager[i][j].Price; // price of this item in this shop
CDA_Add(CDA_GetItemPtr(fWorkTable,Index)^.Items,Entry);
end;
end;
CDA_Sort(fWorkTable);
end;
//------------------------------------------------------------------------------
procedure TfShopByItemsForm.RecountShops;
var
i,j: Integer;
Index: Integer;
CheckCount: Integer;
begin
// init counters
For i := CDA_Low(fWorkTable) to CDA_High(fWorkTable) do
with CDA_GetItemPtr(fWorkTable,i)^ do
begin
Selected := 0;
PriceOfSel := 0;
end;
// do the counting
CheckCount := 0;
For i := 0 to Pred(clbItems.Count) do
If clbItems.Checked[i] then
begin
Inc(CheckCount);
For j := CDA_Low(fWorkTable) to CDA_High(fWorkTable) do
begin
Index := CDA_IndexOfObject(CDA_GetItem(fWorkTable,j).Items,TILItem(clbItems.Items.Objects[i]));
If CDA_CheckIndex(CDA_GetItem(fWorkTable,j).Items,Index) then
with CDA_GetItemPtr(fWorkTable,j)^ do
begin
Inc(Selected);
with CDA_GetItem(CDA_GetItem(fWorkTable,j).Items,Index) do
Inc(PriceOfSel,Price * ItemObject.Pieces);
end;
end;
end;
// finalize
If CheckCount > 0 then
begin
For i := CDA_Low(fWorkTable) to CDA_High(fWorkTable) do
with CDA_GetItemPtr(fWorkTable,i)^ do
If Selected < CheckCount then
Selected := 0;
end
else
begin
// to show all shops when nothing is selected...
For i := CDA_Low(fWorkTable) to CDA_High(fWorkTable) do
with CDA_GetItemPtr(fWorkTable,i)^ do
begin
Selected := 1;
PriceOfSel := 0;
end;
end;
end;
//------------------------------------------------------------------------------
procedure TfShopByItemsForm.FillItems;
var
i: Integer;
begin
clbItems.Items.BeginUpdate;
try
clbItems.Clear;
For i := fILManager.ItemLowIndex to fILManager.ItemHighIndex do
If fILManager[i].DataAccessible and (fILManager[i].ShopsUsefulCount > 0) then
clbItems.AddItem(fILManager[i].TitleStr,fILManager[i]);
For i := 0 to Pred(clbItems.Count) do
clbItems.Checked[i] := False;
finally
clbItems.Items.EndUpdate;
end;
end;
//------------------------------------------------------------------------------
procedure TfShopByItemsForm.FillShops;
var
i: Integer;
Cntr: Integer;
begin
// count numer of shops that will be shown
Cntr := 0;
For i := CDA_Low(fWorkTable) to CDA_High(fWorkTable) do
If CDA_GetItem(fWorkTable,i).Selected > 0 then
Inc(Cntr);
// adjust item count
lvShops.Items.BeginUpdate;
try
If lvShops.Items.Count < Cntr then
begin
For i := lvShops.Items.Count to Pred(Cntr) do
with lvShops.Items.Add do
SubItems.Add(''); // price
end
else If lvShops.Items.Count > Cntr then
begin
For i := Pred(lvShops.Items.Count) downto Cntr do
lvShops.Items.Delete(i);
end;
finally
lvShops.Items.EndUpdate;
end;
// fill the list
Cntr := 0;
For i := CDA_Low(fWorkTable) to CDA_High(fWorkTable) do
If (CDA_GetItem(fWorkTable,i).Selected > 0) and (Cntr < lvShops.Items.Count) then
begin
lvShops.Items[Cntr].Caption := CDA_GetItem(fWorkTable,i).ShopName;
If CDA_GetItem(fWorkTable,i).PriceOfSel > 0 then
lvShops.Items[Cntr].SubItems[0] := IL_Format('%d %s',[CDA_GetItem(fWorkTable,i).PriceOfSel,IL_CURRENCY_SYMBOL])
else
lvShops.Items[Cntr].SubItems[0] := '';
Inc(Cntr);
end;
end;
//------------------------------------------------------------------------------
procedure TfShopByItemsForm.UpdateSelCount;
var
i,Cntr: Integer;
begin
Cntr := 0;
For i := 0 to Pred(clbItems.Count) do
If clbItems.Checked[i] then
Inc(Cntr);
lblItems.Caption := IL_Format('Items (%d selected):',[Cntr]);
end;
//==============================================================================
procedure TfShopByItemsForm.Initialize(ILManager: TILManager);
begin
fILManager := ILManager;
end;
//------------------------------------------------------------------------------
procedure TfShopByItemsForm.Finalize;
begin
// nothing to do
end;
//------------------------------------------------------------------------------
procedure TfShopByItemsForm.ShowSelection;
var
i: Integer;
begin
BuildTable;
FillItems;
RecountShops;
FillShops;
// reinit only for actually shown, not all
For i := 0 to Pred(clbItems.Count) do
with TILItem(clbItems.Items.Objects[i]) do
begin
BeginUpdate;
try
ReinitSmallDrawSize(clbItems.ClientWidth,clbItems.ItemHeight,clbItems.Font);
ChangeSmallStripSize(16);
finally
EndUpdate;
end;
end;
UpdateSelCount;
ShowModal;
end;
//==============================================================================
procedure TfShopByItemsForm.FormCreate(Sender: TObject);
begin
fDrawBuffer := TBitmap.Create;
fDrawBuffer.PixelFormat := pf24bit;
fDrawBuffer.Canvas.Font.Assign(clbItems.Font);
clbItems.DoubleBuffered := True;
lvShops.DoubleBuffered := True;
end;
//------------------------------------------------------------------------------
procedure TfShopByItemsForm.FormDestroy(Sender: TObject);
begin
FreeAndNil(fDrawBuffer);
end;
//------------------------------------------------------------------------------
procedure TfShopByItemsForm.clbItemsClickCheck(Sender: TObject);
begin
RecountShops;
FillShops;
UpdateSelCount;
end;
//------------------------------------------------------------------------------
procedure TfShopByItemsForm.clbItemsDrawItem(Control: TWinControl; aIndex: Integer; Rect: TRect; State: TOwnerDrawState);
var
BoundsRect: TRect;
TempStr: String;
TempInt: Integer;
begin
If Assigned(fDrawBuffer) then
begin
// adjust draw buffer size
If fDrawBuffer.Width < Rect.Right then
fDrawBuffer.Width := Rect.Right;
If fDrawBuffer.Height < (Rect.Bottom - Rect.Top) then
fDrawBuffer.Height := Rect.Bottom - Rect.Top;
BoundsRect := Classes.Rect(0,0,Rect.Right,Rect.Bottom - Rect.Top);
with fDrawBuffer.Canvas do
begin
// content
Draw(BoundsRect.Left,BoundsRect.Top,TILItem(clbItems.Items.Objects[aIndex]).RenderSmall);
TILItem(clbItems.Items.Objects[aIndex]).RenderSmall.Dormant;
// separator line
Pen.Style := psSolid;
Pen.Color := clSilver;
MoveTo(BoundsRect.Left,Pred(BoundsRect.Bottom));
LineTo(BoundsRect.Right,Pred(BoundsRect.Bottom));
// marker
Pen.Style := psClear;
Brush.Style := bsSolid;
Brush.Color := $00F7F7F7;
Rectangle(BoundsRect.Left,BoundsRect.Top,BoundsRect.Left +
TILItem(clbItems.Items.Objects[aIndex]).SmallStrip,BoundsRect.Bottom);
// shop price
TempStr := IL_Format('%d %s',[TILItem(clbItems.Items.Objects[aIndex]).UnitPrice,IL_CURRENCY_SYMBOL]);
Brush.Style := bsClear;
Font.Style := [fsBold];
Font.Color := clWindowText;
Font.Size := 10;
TextOut(BoundsRect.Right - TextWidth(TempStr) - 64,BoundsRect.Top + 2,TempStr);
// states
If odSelected in State then
begin
Pen.Style := psClear;
Brush.Style := bsSolid;
Brush.Color := clLime;
Rectangle(BoundsRect.Left,BoundsRect.Top,BoundsRect.Left +
TILItem(clbItems.Items.Objects[aIndex]).SmallStrip,BoundsRect.Bottom);
end;
// checkbox
Pen.Style := psSolid;
Pen.Color := clGray;
Brush.Style := bsSolid;
Brush.Color := clWindow;
TempInt := BoundsRect.Top + (clbItems.ItemHeight - 13) div 2;
with TILItem(clbItems.Items.Objects[aIndex]) do
begin
Rectangle(BoundsRect.Left + 1,TempInt,BoundsRect.Left + SmallStrip - 2,TempInt + 13);
If clbItems.Checked[aIndex] then
begin
Pen.Style := psClear;
Brush.Style := bsSolid;
Brush.Color := clBlue;
Rectangle(BoundsRect.Left + 3,TempInt + 2,BoundsRect.Left + SmallStrip - 3,TempInt + 12);
end;
end;
end;
// move drawbuffer to the canvas
clbItems.Canvas.CopyRect(Classes.Rect(0,Rect.Top,Rect.Right,Rect.Bottom),fDrawBuffer.Canvas,BoundsRect);
// remove focus rect
If odFocused in State then
clbItems.Canvas.DrawFocusRect(Rect);
end;
end;
//------------------------------------------------------------------------------
procedure TfShopByItemsForm.mniSL_UnselectAllClick(Sender: TObject);
var
i: Integer;
begin
For i := 0 to Pred(clbItems.Count) do
clbItems.Checked[i] := False;
RecountShops;
FillShops;
UpdateSelCount;
end;
end.