1 (* Copyright (C) Doom 2D: Forever Developers
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, version 3 of the License ONLY.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 {$INCLUDE ../shared/a_modes.inc}
21 {$IFDEF USE_MEMPOOL}mempool
,{$ENDIF}
22 g_base
, r_graphics
, e_input
, e_log
, g_playermodel
, g_basic
, g_touch
, MAPDEF
, utils
;
25 MAINMENU_HEADER_COLOR
: TRGB
= (R
:255; G
:255; B
:255);
26 MAINMENU_ITEMS_COLOR
: TRGB
= (R
:255; G
:255; B
:255);
27 MAINMENU_UNACTIVEITEMS_COLOR
: TRGB
= (R
:192; G
:192; B
:192);
28 MAINMENU_CLICKSOUND
= 'MENU_SELECT';
29 MAINMENU_CHANGESOUND
= 'MENU_CHANGE';
31 MAINMENU_MARKER1
= 'MAINMENU_MARKER1';
32 MAINMENU_MARKER2
= 'MAINMENU_MARKER2';
33 MAINMENU_MARKERDELAY
= 24;
34 WINDOW_CLOSESOUND
= 'MENU_CLOSE';
35 MENU_HEADERCOLOR
: TRGB
= (R
:255; G
:255; B
:255);
36 MENU_ITEMSTEXT_COLOR
: TRGB
= (R
:255; G
:255; B
:255);
37 MENU_UNACTIVEITEMS_COLOR
: TRGB
= (R
:128; G
:128; B
:128);
38 MENU_ITEMSCTRL_COLOR
: TRGB
= (R
:255; G
:0; B
:0);
41 MENU_CLICKSOUND
= 'MENU_SELECT';
42 MENU_CHANGESOUND
= 'MENU_CHANGE';
43 MENU_MARKERDELAY
= 24;
44 SCROLL_LEFT
= 'SCROLL_LEFT';
45 SCROLL_RIGHT
= 'SCROLL_RIGHT';
46 SCROLL_MIDDLE
= 'SCROLL_MIDDLE';
47 SCROLL_MARKER
= 'SCROLL_MARKER';
48 SCROLL_ADDSOUND
= 'SCROLL_ADD';
49 SCROLL_SUBSOUND
= 'SCROLL_SUB';
50 EDIT_LEFT
= 'EDIT_LEFT';
51 EDIT_RIGHT
= 'EDIT_RIGHT';
52 EDIT_MIDDLE
= 'EDIT_MIDDLE';
53 EDIT_CURSORCOLOR
: TRGB
= (R
:200; G
:0; B
:0);
55 KEYREAD_QUERY
= '<...>';
56 KEYREAD_CLEAR
= '???';
59 MAPPREVIEW_HEIGHT
= 8;
69 BSCROLL_UPA
= 'BSCROLL_UP_A';
70 BSCROLL_UPU
= 'BSCROLL_UP_U';
71 BSCROLL_DOWNA
= 'BSCROLL_DOWN_A';
72 BSCROLL_DOWNU
= 'BSCROLL_DOWN_U';
73 BSCROLL_MIDDLE
= 'BSCROLL_MIDDLE';
85 TFontType
= (Texture
, Character
);
87 TFont
= class{$IFDEF USE_MEMPOOL}(TPoolObject
){$ENDIF}
93 constructor Create(FontID
: DWORD
; FontType
: TFontType
);
94 destructor Destroy
; override;
95 procedure Draw(X
, Y
: Integer; Text: string; R
, G
, B
: Byte);
96 procedure GetTextSize(Text: string; var w
, h
: Word);
97 property Scale
: Single read FScale write FScale
;
103 TOnKeyDownEvent
= procedure(Key
: Byte);
104 TOnKeyDownEventEx
= procedure(win
: TGUIWindow
; Key
: Byte);
105 TOnCloseEvent
= procedure;
106 TOnShowEvent
= procedure;
107 TOnClickEvent
= procedure;
108 TOnChangeEvent
= procedure(Sender
: TGUIControl
);
109 TOnEnterEvent
= procedure(Sender
: TGUIControl
);
111 TGUIControl
= class{$IFDEF USE_MEMPOOL}(TPoolObject
){$ENDIF}
115 FWindow
: TGUIWindow
;
118 FRightAlign
: Boolean; //HACK! this works only for "normal" menus, only for menu text labels, and generally sux. sorry.
119 FMaxWidth
: Integer; //HACK! used for right-aligning labels
122 procedure OnMessage(var Msg
: TMessage
); virtual;
123 procedure Update
; virtual;
124 procedure Draw
; virtual;
125 function GetWidth(): Integer; virtual;
126 function GetHeight(): Integer; virtual;
127 function WantActivationKey (key
: LongInt): Boolean; virtual;
128 property X
: Integer read FX write FX
;
129 property Y
: Integer read FY write FY
;
130 property Enabled
: Boolean read FEnabled write FEnabled
;
131 property Name
: string read FName write FName
;
132 property UserData
: Pointer read FUserData write FUserData
;
133 property RightAlign
: Boolean read FRightAlign write FRightAlign
; // for menu
136 TGUIWindow
= class{$IFDEF USE_MEMPOOL}(TPoolObject
){$ENDIF}
138 FActiveControl
: TGUIControl
;
140 FPrevWindow
: TGUIWindow
;
142 FBackTexture
: string;
143 FMainWindow
: Boolean;
144 FOnKeyDown
: TOnKeyDownEvent
;
145 FOnKeyDownEx
: TOnKeyDownEventEx
;
146 FOnCloseEvent
: TOnCloseEvent
;
147 FOnShowEvent
: TOnShowEvent
;
150 Childs
: array of TGUIControl
;
151 constructor Create(Name
: string);
152 destructor Destroy
; override;
153 function AddChild(Child
: TGUIControl
): TGUIControl
;
154 procedure OnMessage(var Msg
: TMessage
);
157 procedure SetActive(Control
: TGUIControl
);
158 function GetControl(Name
: string): TGUIControl
;
159 property OnKeyDown
: TOnKeyDownEvent read FOnKeyDown write FOnKeyDown
;
160 property OnKeyDownEx
: TOnKeyDownEventEx read FOnKeyDownEx write FOnKeyDownEx
;
161 property OnClose
: TOnCloseEvent read FOnCloseEvent write FOnCloseEvent
;
162 property OnShow
: TOnShowEvent read FOnShowEvent write FOnShowEvent
;
163 property Name
: string read FName
;
164 property DefControl
: string read FDefControl write FDefControl
;
165 property BackTexture
: string read FBackTexture write FBackTexture
;
166 property MainWindow
: Boolean read FMainWindow write FMainWindow
;
167 property UserData
: Pointer read FUserData write FUserData
;
170 TGUITextButton
= class(TGUIControl
)
179 ProcEx
: procedure (sender
: TGUITextButton
);
180 constructor Create(aProc
: Pointer; FontID
: DWORD
; Text: string);
181 destructor Destroy(); override;
182 procedure OnMessage(var Msg
: TMessage
); override;
183 procedure Update(); override;
184 procedure Draw(); override;
185 function GetWidth(): Integer; override;
186 function GetHeight(): Integer; override;
187 procedure Click(Silent
: Boolean = False);
188 property Caption
: string read FText write FText
;
189 property Color
: TRGB read FColor write FColor
;
190 property Font
: TFont read FFont write FFont
;
191 property ShowWindow
: string read FShowWindow write FShowWindow
;
194 TGUILabel
= class(TGUIControl
)
200 FOnClickEvent
: TOnClickEvent
;
202 constructor Create(Text: string; FontID
: DWORD
);
203 procedure OnMessage(var Msg
: TMessage
); override;
204 procedure Draw
; override;
205 function GetWidth
: Integer; override;
206 function GetHeight
: Integer; override;
207 property OnClick
: TOnClickEvent read FOnClickEvent write FOnClickEvent
;
208 property FixedLength
: Word read FFixedLen write FFixedLen
;
209 property Text: string read FText write FText
;
210 property Color
: TRGB read FColor write FColor
;
211 property Font
: TFont read FFont write FFont
;
214 TGUIScroll
= class(TGUIControl
)
222 FOnChangeEvent
: TOnChangeEvent
;
223 procedure FSetValue(a
: Integer);
225 constructor Create();
226 procedure OnMessage(var Msg
: TMessage
); override;
227 procedure Update
; override;
228 procedure Draw
; override;
229 function GetWidth(): Integer; override;
230 property OnChange
: TOnChangeEvent read FOnChangeEvent write FOnChangeEvent
;
231 property Max
: Word read FMax write FMax
;
232 property Value
: Integer read FValue write FSetValue
;
235 TGUISwitch
= class(TGUIControl
)
238 FItems
: array of string;
241 FOnChangeEvent
: TOnChangeEvent
;
243 constructor Create(FontID
: DWORD
);
244 procedure OnMessage(var Msg
: TMessage
); override;
245 procedure AddItem(Item
: string);
246 procedure Update
; override;
247 procedure Draw
; override;
248 function GetWidth(): Integer; override;
249 function GetText
: string;
250 property ItemIndex
: Integer read FIndex write FIndex
;
251 property Color
: TRGB read FColor write FColor
;
252 property Font
: TFont read FFont write FFont
;
253 property OnChange
: TOnChangeEvent read FOnChangeEvent write FOnChangeEvent
;
256 TGUIEdit
= class(TGUIControl
)
264 FOnlyDigits
: Boolean;
268 FOnChangeEvent
: TOnChangeEvent
;
269 FOnEnterEvent
: TOnEnterEvent
;
271 procedure SetText(Text: string);
273 constructor Create(FontID
: DWORD
);
274 procedure OnMessage(var Msg
: TMessage
); override;
275 procedure Update
; override;
276 procedure Draw
; override;
277 function GetWidth(): Integer; override;
278 property OnChange
: TOnChangeEvent read FOnChangeEvent write FOnChangeEvent
;
279 property OnEnter
: TOnEnterEvent read FOnEnterEvent write FOnEnterEvent
;
280 property Width
: Word read FWidth write FWidth
;
281 property MaxLength
: Word read FMaxLength write FMaxLength
;
282 property OnlyDigits
: Boolean read FOnlyDigits write FOnlyDigits
;
283 property Text: string read FText write SetText
;
284 property Color
: TRGB read FColor write FColor
;
285 property Font
: TFont read FFont write FFont
;
286 property Invalid
: Boolean read FInvalid write FInvalid
;
289 TGUIKeyRead
= class(TGUIControl
)
296 constructor Create(FontID
: DWORD
);
297 procedure OnMessage(var Msg
: TMessage
); override;
298 procedure Draw
; override;
299 function GetWidth(): Integer; override;
300 function WantActivationKey (key
: LongInt): Boolean; override;
301 property Key
: Word read FKey write FKey
;
302 property Color
: TRGB read FColor write FColor
;
303 property Font
: TFont read FFont write FFont
;
307 TGUIKeyRead2
= class(TGUIControl
)
312 FKey0
, FKey1
: Word; // this should be an array. sorry.
315 FMaxKeyNameWdt
: Integer;
317 constructor Create(FontID
: DWORD
);
318 procedure OnMessage(var Msg
: TMessage
); override;
319 procedure Draw
; override;
320 function GetWidth(): Integer; override;
321 function WantActivationKey (key
: LongInt): Boolean; override;
322 property Key0
: Word read FKey0 write FKey0
;
323 property Key1
: Word read FKey1 write FKey1
;
324 property Color
: TRGB read FColor write FColor
;
325 property Font
: TFont read FFont write FFont
;
328 TGUIModelView
= class(TGUIControl
)
330 FModel
: TPlayerModel
;
334 destructor Destroy
; override;
335 procedure OnMessage(var Msg
: TMessage
); override;
336 procedure SetModel(ModelName
: string);
337 procedure SetColor(Red
, Green
, Blue
: Byte);
338 procedure NextAnim();
339 procedure NextWeapon();
340 procedure Update
; override;
341 procedure Draw
; override;
342 property Model
: TPlayerModel read FModel
;
345 TPreviewPanel
= record
346 X1
, Y1
, X2
, Y2
: Integer;
350 TGUIMapPreview
= class(TGUIControl
)
352 FMapData
: array of TPreviewPanel
;
356 constructor Create();
357 destructor Destroy(); override;
358 procedure OnMessage(var Msg
: TMessage
); override;
359 procedure SetMap(Res
: string);
360 procedure ClearMap();
361 procedure Update(); override;
362 procedure Draw(); override;
363 function GetScaleStr
: String;
366 TGUIImage
= class(TGUIControl
)
371 constructor Create();
372 destructor Destroy(); override;
373 procedure OnMessage(var Msg
: TMessage
); override;
374 procedure SetImage(Res
: string);
375 procedure ClearImage();
376 procedure Update(); override;
377 procedure Draw(); override;
378 property DefaultRes
: string read FDefaultRes write FDefaultRes
;
381 TGUIListBox
= class(TGUIControl
)
385 FUnActiveColor
: TRGB
;
393 FDrawScroll
: Boolean;
394 FOnChangeEvent
: TOnChangeEvent
;
396 procedure FSetItems(Items
: SSArray
);
397 procedure FSetIndex(aIndex
: Integer);
400 constructor Create(FontID
: DWORD
; Width
, Height
: Word);
401 procedure OnMessage(var Msg
: TMessage
); override;
402 procedure Draw(); override;
403 procedure AddItem(Item
: String);
404 function ItemExists (item
: String): Boolean;
405 procedure SelectItem(Item
: String);
407 function GetWidth(): Integer; override;
408 function GetHeight(): Integer; override;
409 function SelectedItem(): String;
411 property OnChange
: TOnChangeEvent read FOnChangeEvent write FOnChangeEvent
;
412 property Sort
: Boolean read FSort write FSort
;
413 property ItemIndex
: Integer read FIndex write FSetIndex
;
414 property Items
: SSArray read FItems write FSetItems
;
415 property DrawBack
: Boolean read FDrawBack write FDrawBack
;
416 property DrawScrollBar
: Boolean read FDrawScroll write FDrawScroll
;
417 property ActiveColor
: TRGB read FActiveColor write FActiveColor
;
418 property UnActiveColor
: TRGB read FUnActiveColor write FUnActiveColor
;
419 property Font
: TFont read FFont write FFont
;
422 TGUIFileListBox
= class(TGUIListBox
)
427 FBaseList
: SSArray
; // highter index have highter priority
432 procedure OnMessage (var Msg
: TMessage
); override;
433 procedure SetBase (dirs
: SSArray
; path
: String = '');
434 function SelectedItem(): String;
435 procedure UpdateFileList
;
437 property Dirs
: Boolean read FDirs write FDirs
;
438 property FileMask
: String read FFileMask write FFileMask
;
441 TGUIMemo
= class(TGUIControl
)
450 FDrawScroll
: Boolean;
452 constructor Create(FontID
: DWORD
; Width
, Height
: Word);
453 procedure OnMessage(var Msg
: TMessage
); override;
454 procedure Draw
; override;
456 function GetWidth(): Integer; override;
457 function GetHeight(): Integer; override;
458 procedure SetText(Text: string);
459 property DrawBack
: Boolean read FDrawBack write FDrawBack
;
460 property DrawScrollBar
: Boolean read FDrawScroll write FDrawScroll
;
461 property Color
: TRGB read FColor write FColor
;
462 property Font
: TFont read FFont write FFont
;
465 TGUIMainMenu
= class(TGUIControl
)
467 FButtons
: array of TGUITextButton
;
476 constructor Create(FontID
: DWORD
; Logo
, Header
: string);
477 destructor Destroy
; override;
478 procedure OnMessage(var Msg
: TMessage
); override;
479 function AddButton(fProc
: Pointer; Caption
: string; ShowWindow
: string = ''): TGUITextButton
;
480 function GetButton(aName
: string): TGUITextButton
;
481 procedure EnableButton(aName
: string; e
: Boolean);
482 procedure AddSpace();
483 procedure Update
; override;
484 procedure Draw
; override;
487 TControlType
= class of TGUIControl
;
489 PMenuItem
= ^TMenuItem
;
492 ControlType
: TControlType
;
493 Control
: TGUIControl
;
496 TGUIMenu
= class(TGUIControl
)
498 FItems
: array of TMenuItem
;
506 function NewItem(): Integer;
508 constructor Create(HeaderFont
, ItemsFont
: DWORD
; Header
: string);
509 destructor Destroy
; override;
510 procedure OnMessage(var Msg
: TMessage
); override;
511 procedure AddSpace();
512 procedure AddLine(fText
: string);
513 procedure AddText(fText
: string; MaxWidth
: Word);
514 function AddLabel(fText
: string): TGUILabel
;
515 function AddButton(Proc
: Pointer; fText
: string; _ShowWindow
: string = ''): TGUITextButton
;
516 function AddScroll(fText
: string): TGUIScroll
;
517 function AddSwitch(fText
: string): TGUISwitch
;
518 function AddEdit(fText
: string): TGUIEdit
;
519 function AddKeyRead(fText
: string): TGUIKeyRead
;
520 function AddKeyRead2(fText
: string): TGUIKeyRead2
;
521 function AddList(fText
: string; Width
, Height
: Word): TGUIListBox
;
522 function AddFileList(fText
: string; Width
, Height
: Word): TGUIFileListBox
;
523 function AddMemo(fText
: string; Width
, Height
: Word): TGUIMemo
;
525 function GetControl(aName
: string): TGUIControl
;
526 function GetControlsText(aName
: string): TGUILabel
;
527 procedure Draw
; override;
528 procedure Update
; override;
529 procedure UpdateIndex();
530 property Align
: Boolean read FAlign write FAlign
;
531 property Left
: Integer read FLeft write FLeft
;
532 property YesNo
: Boolean read FYesNo write FYesNo
;
536 g_GUIWindows
: array of TGUIWindow
;
537 g_ActiveWindow
: TGUIWindow
= nil;
538 g_GUIGrabInput
: Boolean = False;
540 procedure g_GUI_Init();
541 function g_GUI_AddWindow(Window
: TGUIWindow
): TGUIWindow
;
542 function g_GUI_GetWindow(Name
: string): TGUIWindow
;
543 procedure g_GUI_ShowWindow(Name
: string);
544 procedure g_GUI_HideWindow(PlaySound
: Boolean = True);
545 function g_GUI_Destroy(): Boolean;
546 procedure g_GUI_SaveMenuPos();
547 procedure g_GUI_LoadMenuPos();
553 g_sound
, SysUtils
, e_res
, r_textures
,
554 g_game
, Math
, StrUtils
, g_player
, g_options
, r_playermodel
,
555 g_map
, g_weapons
, xdynrec
, wadreader
;
559 Box
: Array [0..8] of DWORD
;
560 Saved_Windows
: SSArray
;
562 function GetLines (Text: string; FontID
: DWORD
; MaxWidth
: Word): SSArray
;
563 var i
, j
, len
, lines
: Integer;
565 function GetLine (j
, i
: Integer): String;
567 result
:= Copy(text, j
, i
- j
+ 1);
570 function GetWidth (j
, i
: Integer): Integer;
573 e_CharFont_GetSize(FontID
, GetLine(j
, i
), w
, h
);
578 result
:= nil; lines
:= 0;
579 j
:= 1; i
:= 1; len
:= Length(Text);
580 // e_LogWritefln('GetLines @%s len=%s [%s]', [MaxWidth, len, Text]);
583 (* --- Get longest possible sequence --- *)
584 while (i
+ 1 <= len
) and (GetWidth(j
, i
+ 1) <= MaxWidth
) do Inc(i
);
585 (* --- Do not include part of word --- *)
586 if (i
< len
) and (text[i
] <> ' ') then
587 while (i
>= j
) and (text[i
] <> ' ') do Dec(i
);
588 (* --- Do not include spaces --- *)
589 while (i
>= j
) and (text[i
] = ' ') do Dec(i
);
590 (* --- Add line --- *)
591 SetLength(result
, lines
+ 1);
592 result
[lines
] := GetLine(j
, i
);
593 // e_LogWritefln(' -> (%s:%s::%s) [%s]', [j, i, GetWidth(j, i), result[lines]]);
595 (* --- Skip spaces --- *)
596 while (i
<= len
) and (text[i
] = ' ') do Inc(i
);
601 procedure Sort (var a
: SSArray
);
602 var i
, j
: Integer; s
: string;
604 if a
= nil then Exit
;
606 for i
:= High(a
) downto Low(a
) do
607 for j
:= Low(a
) to High(a
) - 1 do
608 if LowerCase(a
[j
]) > LowerCase(a
[j
+ 1]) then
616 procedure g_GUI_Init();
618 g_Texture_Get(BOX1
, Box
[0]);
619 g_Texture_Get(BOX2
, Box
[1]);
620 g_Texture_Get(BOX3
, Box
[2]);
621 g_Texture_Get(BOX4
, Box
[3]);
622 g_Texture_Get(BOX5
, Box
[4]);
623 g_Texture_Get(BOX6
, Box
[5]);
624 g_Texture_Get(BOX7
, Box
[6]);
625 g_Texture_Get(BOX8
, Box
[7]);
626 g_Texture_Get(BOX9
, Box
[8]);
629 function g_GUI_Destroy(): Boolean;
633 Result
:= (Length(g_GUIWindows
) > 0);
635 for i
:= 0 to High(g_GUIWindows
) do
636 g_GUIWindows
[i
].Free();
639 g_ActiveWindow
:= nil;
642 function g_GUI_AddWindow(Window
: TGUIWindow
): TGUIWindow
;
644 SetLength(g_GUIWindows
, Length(g_GUIWindows
)+1);
645 g_GUIWindows
[High(g_GUIWindows
)] := Window
;
650 function g_GUI_GetWindow(Name
: string): TGUIWindow
;
656 if g_GUIWindows
<> nil then
657 for i
:= 0 to High(g_GUIWindows
) do
658 if g_GUIWindows
[i
].FName
= Name
then
660 Result
:= g_GUIWindows
[i
];
664 Assert(Result
<> nil, 'GUI_Window "'+Name
+'" not found');
667 procedure g_GUI_ShowWindow(Name
: string);
671 if g_GUIWindows
= nil then
674 for i
:= 0 to High(g_GUIWindows
) do
675 if g_GUIWindows
[i
].FName
= Name
then
677 g_GUIWindows
[i
].FPrevWindow
:= g_ActiveWindow
;
678 g_ActiveWindow
:= g_GUIWindows
[i
];
680 if g_ActiveWindow
.MainWindow
then
681 g_ActiveWindow
.FPrevWindow
:= nil;
683 if g_ActiveWindow
.FDefControl
<> '' then
684 g_ActiveWindow
.SetActive(g_ActiveWindow
.GetControl(g_ActiveWindow
.FDefControl
))
686 g_ActiveWindow
.SetActive(nil);
688 if @g_ActiveWindow
.FOnShowEvent
<> nil then
689 g_ActiveWindow
.FOnShowEvent();
695 procedure g_GUI_HideWindow(PlaySound
: Boolean = True);
697 if g_ActiveWindow
<> nil then
699 if @g_ActiveWindow
.OnClose
<> nil then
700 g_ActiveWindow
.OnClose();
701 g_ActiveWindow
:= g_ActiveWindow
.FPrevWindow
;
703 g_Sound_PlayEx(WINDOW_CLOSESOUND
);
707 procedure g_GUI_SaveMenuPos();
712 SetLength(Saved_Windows
, 0);
713 win
:= g_ActiveWindow
;
717 len
:= Length(Saved_Windows
);
718 SetLength(Saved_Windows
, len
+ 1);
720 Saved_Windows
[len
] := win
.Name
;
722 if win
.MainWindow
then
725 win
:= win
.FPrevWindow
;
729 procedure g_GUI_LoadMenuPos();
731 i
, j
, k
, len
: Integer;
734 g_ActiveWindow
:= nil;
735 len
:= Length(Saved_Windows
);
740 // Îêíî ñ ãëàâíûì ìåíþ:
741 g_GUI_ShowWindow(Saved_Windows
[len
-1]);
743 // Íå ïåðåêëþ÷èëîñü (èëè íåêóäà äàëüøå):
744 if (len
= 1) or (g_ActiveWindow
= nil) then
747 // Èùåì êíîïêè â îñòàëüíûõ îêíàõ:
748 for k
:= len
-1 downto 1 do
752 for i
:= 0 to Length(g_ActiveWindow
.Childs
)-1 do
754 if g_ActiveWindow
.Childs
[i
] is TGUIMainMenu
then
755 begin // GUI_MainMenu
756 with TGUIMainMenu(g_ActiveWindow
.Childs
[i
]) do
757 for j
:= 0 to Length(FButtons
)-1 do
758 if FButtons
[j
].ShowWindow
= Saved_Windows
[k
-1] then
760 FButtons
[j
].Click(True);
766 if g_ActiveWindow
.Childs
[i
] is TGUIMenu
then
767 with TGUIMenu(g_ActiveWindow
.Childs
[i
]) do
768 for j
:= 0 to Length(FItems
)-1 do
769 if FItems
[j
].ControlType
= TGUITextButton
then
770 if TGUITextButton(FItems
[j
].Control
).ShowWindow
= Saved_Windows
[k
-1] then
772 TGUITextButton(FItems
[j
].Control
).Click(True);
783 (g_ActiveWindow
.Name
= Saved_Windows
[k
]) then
788 procedure DrawBox(X
, Y
: Integer; Width
, Height
: Word);
790 e_Draw(Box
[0], X
, Y
, 0, False, False);
791 e_DrawFill(Box
[1], X
+4, Y
, Width
*4, 1, 0, False, False);
792 e_Draw(Box
[2], X
+4+Width
*16, Y
, 0, False, False);
793 e_DrawFill(Box
[3], X
, Y
+4, 1, Height
*4, 0, False, False);
794 e_DrawFill(Box
[4], X
+4, Y
+4, Width
, Height
, 0, False, False);
795 e_DrawFill(Box
[5], X
+4+Width
*16, Y
+4, 1, Height
*4, 0, False, False);
796 e_Draw(Box
[6], X
, Y
+4+Height
*16, 0, False, False);
797 e_DrawFill(Box
[7], X
+4, Y
+4+Height
*16, Width
*4, 1, 0, False, False);
798 e_Draw(Box
[8], X
+4+Width
*16, Y
+4+Height
*16, 0, False, False);
801 procedure DrawScroll(X
, Y
: Integer; Height
: Word; Up
, Down
: Boolean);
805 if Height
< 3 then Exit
;
808 g_Texture_Get(BSCROLL_UPA
, ID
)
810 g_Texture_Get(BSCROLL_UPU
, ID
);
811 e_Draw(ID
, X
, Y
, 0, False, False);
814 g_Texture_Get(BSCROLL_DOWNA
, ID
)
816 g_Texture_Get(BSCROLL_DOWNU
, ID
);
817 e_Draw(ID
, X
, Y
+(Height
-1)*16, 0, False, False);
819 g_Texture_Get(BSCROLL_MIDDLE
, ID
);
820 e_DrawFill(ID
, X
, Y
+16, 1, Height
-2, 0, False, False);
825 constructor TGUIWindow
.Create(Name
: string);
828 FActiveControl
:= nil;
832 FOnCloseEvent
:= nil;
836 destructor TGUIWindow
.Destroy
;
843 for i
:= 0 to High(Childs
) do
847 function TGUIWindow
.AddChild(Child
: TGUIControl
): TGUIControl
;
849 Child
.FWindow
:= Self
;
851 SetLength(Childs
, Length(Childs
) + 1);
852 Childs
[High(Childs
)] := Child
;
857 procedure TGUIWindow
.Update
;
861 for i
:= 0 to High(Childs
) do
862 if Childs
[i
] <> nil then Childs
[i
].Update
;
865 procedure TGUIWindow
.Draw
;
871 if FBackTexture
<> '' then // Here goes code duplication from g_game.pas:DrawMenuBackground()
872 if g_Texture_Get(FBackTexture
, ID
) then
875 e_GetTextureSize(ID
, @tw
, @th
);
877 tw
:= round(tw
* 1.333 * (gScreenHeight
/ th
))
879 tw
:= trunc(tw
* (gScreenHeight
/ th
));
880 e_DrawSize(ID
, (gScreenWidth
- tw
) div 2, 0, 0, False, False, tw
, gScreenHeight
);
883 e_Clear(0.5, 0.5, 0.5);
886 if FName
= 'AuthorsMenu' then
887 e_DarkenQuadWH(0, 0, gScreenWidth
, gScreenHeight
, 150);
889 for i
:= 0 to High(Childs
) do
890 if Childs
[i
] <> nil then Childs
[i
].Draw
;
893 procedure TGUIWindow
.OnMessage(var Msg
: TMessage
);
895 if FActiveControl
<> nil then FActiveControl
.OnMessage(Msg
);
896 if @FOnKeyDown
<> nil then FOnKeyDown(Msg
.wParam
);
897 if @FOnKeyDownEx
<> nil then FOnKeyDownEx(self
, Msg
.wParam
);
899 if Msg
.Msg
= WM_KEYDOWN
then
911 procedure TGUIWindow
.SetActive(Control
: TGUIControl
);
913 FActiveControl
:= Control
;
916 function TGUIWindow
.GetControl(Name
: String): TGUIControl
;
922 if Childs
<> nil then
923 for i
:= 0 to High(Childs
) do
924 if Childs
[i
] <> nil then
925 if LowerCase(Childs
[i
].FName
) = LowerCase(Name
) then
931 Assert(Result
<> nil, 'Window Control "'+Name
+'" not Found!');
936 constructor TGUIControl
.Create();
942 FRightAlign
:= false;
946 procedure TGUIControl
.OnMessage(var Msg
: TMessage
);
952 procedure TGUIControl
.Update();
956 procedure TGUIControl
.Draw();
960 function TGUIControl
.WantActivationKey (key
: LongInt): Boolean;
965 function TGUIControl
.GetWidth(): Integer;
970 function TGUIControl
.GetHeight(): Integer;
977 procedure TGUITextButton
.Click(Silent
: Boolean = False);
979 if (FSound
<> '') and (not Silent
) then g_Sound_PlayEx(FSound
);
981 if @Proc
<> nil then Proc();
982 if @ProcEx
<> nil then ProcEx(self
);
984 if FShowWindow
<> '' then g_GUI_ShowWindow(FShowWindow
);
987 constructor TGUITextButton
.Create(aProc
: Pointer; FontID
: DWORD
; Text: string);
994 FFont
:= TFont
.Create(FontID
, TFontType
.Character
);
999 destructor TGUITextButton
.Destroy
;
1005 procedure TGUITextButton
.Draw
;
1007 FFont
.Draw(FX
, FY
, FText
, FColor
.R
, FColor
.G
, FColor
.B
)
1010 function TGUITextButton
.GetHeight
: Integer;
1014 FFont
.GetTextSize(FText
, w
, h
);
1018 function TGUITextButton
.GetWidth
: Integer;
1022 FFont
.GetTextSize(FText
, w
, h
);
1026 procedure TGUITextButton
.OnMessage(var Msg
: TMessage
);
1028 if not FEnabled
then Exit
;
1035 IK_RETURN
, IK_KPRETURN
, VK_FIRE
, VK_OPEN
, JOY0_ATTACK
, JOY1_ATTACK
, JOY2_ATTACK
, JOY3_ATTACK
: Click();
1040 procedure TGUITextButton
.Update
;
1047 constructor TFont
.Create(FontID
: DWORD
; FontType
: TFontType
);
1052 FFontType
:= FontType
;
1055 destructor TFont
.Destroy
;
1061 procedure TFont
.Draw(X
, Y
: Integer; Text: string; R
, G
, B
: Byte);
1063 if FFontType
= TFontType
.Character
then e_CharFont_PrintEx(ID
, X
, Y
, Text, _RGB(R
, G
, B
), FScale
)
1064 else e_TextureFontPrintEx(X
, Y
, Text, ID
, R
, G
, B
, FScale
);
1067 procedure TFont
.GetTextSize(Text: string; var w
, h
: Word);
1071 if FFontType
= TFontType
.Character
then e_CharFont_GetSize(ID
, Text, w
, h
)
1074 e_TextureFontGetSize(ID
, cw
, ch
);
1075 w
:= cw
*Length(Text);
1079 w
:= Round(w
*FScale
);
1080 h
:= Round(h
*FScale
);
1085 function TGUIMainMenu
.AddButton(fProc
: Pointer; Caption
: string; ShowWindow
: string = ''): TGUITextButton
;
1093 SetLength(FButtons
, Length(FButtons
)+1);
1094 FButtons
[High(FButtons
)] := TGUITextButton
.Create(fProc
, FFontID
, Caption
);
1095 FButtons
[High(FButtons
)].ShowWindow
:= ShowWindow
;
1096 with FButtons
[High(FButtons
)] do
1098 if (fProc
<> nil) or (ShowWindow
<> '') then FColor
:= MAINMENU_ITEMS_COLOR
1099 else FColor
:= MAINMENU_UNACTIVEITEMS_COLOR
;
1100 FSound
:= MAINMENU_CLICKSOUND
;
1103 _x
:= gScreenWidth
div 2;
1105 for a
:= 0 to High(FButtons
) do
1106 if FButtons
[a
] <> nil then
1107 _x
:= Min(_x
, (gScreenWidth
div 2)-(FButtons
[a
].GetWidth
div 2));
1109 if FLogo
<> 0 then e_GetTextureSize(FLogo
, nil, @lh
);
1110 hh
:= FButtons
[High(FButtons
)].GetHeight
;
1112 if FLogo
<> 0 then h
:= lh
+ hh
* (1 + Length(FButtons
)) + MAINMENU_SPACE
* (Length(FButtons
) - 1)
1113 else h
:= hh
* (2 + Length(FButtons
)) + MAINMENU_SPACE
* (Length(FButtons
) - 1);
1114 h
:= (gScreenHeight
div 2) - (h
div 2);
1116 if FHeader
<> nil then with FHeader
do
1122 if FLogo
<> 0 then Inc(h
, lh
)
1125 for a
:= 0 to High(FButtons
) do
1127 if FButtons
[a
] <> nil then
1134 Inc(h
, hh
+MAINMENU_SPACE
);
1137 Result
:= FButtons
[High(FButtons
)];
1140 procedure TGUIMainMenu
.AddSpace
;
1142 SetLength(FButtons
, Length(FButtons
)+1);
1143 FButtons
[High(FButtons
)] := nil;
1146 constructor TGUIMainMenu
.Create(FontID
: DWORD
; Logo
, Header
: string);
1152 FCounter
:= MAINMENU_MARKERDELAY
;
1154 g_Texture_Get(MAINMENU_MARKER1
, FMarkerID1
);
1155 g_Texture_Get(MAINMENU_MARKER2
, FMarkerID2
);
1157 if not g_Texture_Get(Logo
, FLogo
) then
1159 FHeader
:= TGUILabel
.Create(Header
, FFontID
);
1162 FColor
:= MAINMENU_HEADER_COLOR
;
1163 FX
:= (gScreenWidth
div 2)-(GetWidth
div 2);
1164 FY
:= (gScreenHeight
div 2)-(GetHeight
div 2);
1169 destructor TGUIMainMenu
.Destroy
;
1173 if FButtons
<> nil then
1174 for a
:= 0 to High(FButtons
) do
1182 procedure TGUIMainMenu
.Draw
;
1190 if FHeader
<> nil then FHeader
.Draw
1192 e_GetTextureSize(FLogo
, @w
, @h
);
1193 e_Draw(FLogo
, ((gScreenWidth
div 2) - (w
div 2)), FButtons
[0].FY
- FButtons
[0].GetHeight
- h
, 0, True, False);
1196 if FButtons
<> nil then
1198 for a
:= 0 to High(FButtons
) do
1199 if FButtons
[a
] <> nil then FButtons
[a
].Draw
;
1201 if FIndex
<> -1 then
1202 e_Draw(FMarkerID1
, FButtons
[FIndex
].FX
-48, FButtons
[FIndex
].FY
, 0, True, False);
1206 procedure TGUIMainMenu
.EnableButton(aName
: string; e
: Boolean);
1210 if FButtons
= nil then Exit
;
1212 for a
:= 0 to High(FButtons
) do
1213 if (FButtons
[a
] <> nil) and (FButtons
[a
].Name
= aName
) then
1215 if e
then FButtons
[a
].FColor
:= MAINMENU_ITEMS_COLOR
1216 else FButtons
[a
].FColor
:= MAINMENU_UNACTIVEITEMS_COLOR
;
1217 FButtons
[a
].Enabled
:= e
;
1222 function TGUIMainMenu
.GetButton(aName
: string): TGUITextButton
;
1228 if FButtons
= nil then Exit
;
1230 for a
:= 0 to High(FButtons
) do
1231 if (FButtons
[a
] <> nil) and (FButtons
[a
].Name
= aName
) then
1233 Result
:= FButtons
[a
];
1238 procedure TGUIMainMenu
.OnMessage(var Msg
: TMessage
);
1243 if not FEnabled
then Exit
;
1247 if FButtons
= nil then Exit
;
1250 for a
:= 0 to High(FButtons
) do
1251 if FButtons
[a
] <> nil then
1257 if not ok
then Exit
;
1262 IK_UP
, IK_KPUP
, VK_UP
, JOY0_UP
, JOY1_UP
, JOY2_UP
, JOY3_UP
:
1266 if FIndex
< 0 then FIndex
:= High(FButtons
);
1267 until FButtons
[FIndex
] <> nil;
1269 g_Sound_PlayEx(MENU_CHANGESOUND
);
1271 IK_DOWN
, IK_KPDOWN
, VK_DOWN
, JOY0_DOWN
, JOY1_DOWN
, JOY2_DOWN
, JOY3_DOWN
:
1275 if FIndex
> High(FButtons
) then FIndex
:= 0;
1276 until FButtons
[FIndex
] <> nil;
1278 g_Sound_PlayEx(MENU_CHANGESOUND
);
1280 IK_RETURN
, IK_KPRETURN
, VK_FIRE
, VK_OPEN
, JOY0_ATTACK
, JOY1_ATTACK
, JOY2_ATTACK
, JOY3_ATTACK
: if (FIndex
<> -1) and FButtons
[FIndex
].FEnabled
then FButtons
[FIndex
].Click
;
1285 procedure TGUIMainMenu
.Update
;
1291 if FCounter
= 0 then
1294 FMarkerID1
:= FMarkerID2
;
1297 FCounter
:= MAINMENU_MARKERDELAY
;
1298 end else Dec(FCounter
);
1303 constructor TGUILabel
.Create(Text: string; FontID
: DWORD
);
1307 FFont
:= TFont
.Create(FontID
, TFontType
.Character
);
1311 FOnClickEvent
:= nil;
1314 procedure TGUILabel
.Draw
;
1320 FFont
.GetTextSize(FText
, w
, h
);
1321 FFont
.Draw(FX
+FMaxWidth
-w
, FY
, FText
, FColor
.R
, FColor
.G
, FColor
.B
);
1325 FFont
.Draw(FX
, FY
, FText
, FColor
.R
, FColor
.G
, FColor
.B
);
1329 function TGUILabel
.GetHeight
: Integer;
1333 FFont
.GetTextSize(FText
, w
, h
);
1337 function TGUILabel
.GetWidth
: Integer;
1341 if FFixedLen
= 0 then
1342 FFont
.GetTextSize(FText
, w
, h
)
1344 w
:= e_CharFont_GetMaxWidth(FFont
.ID
)*FFixedLen
;
1348 procedure TGUILabel
.OnMessage(var Msg
: TMessage
);
1350 if not FEnabled
then Exit
;
1357 IK_RETURN
, IK_KPRETURN
, VK_FIRE
, VK_OPEN
, JOY0_ATTACK
, JOY1_ATTACK
, JOY2_ATTACK
, JOY3_ATTACK
: if @FOnClickEvent
<> nil then FOnClickEvent();
1364 function TGUIMenu
.AddButton(Proc
: Pointer; fText
: string; _ShowWindow
: string = ''): TGUITextButton
;
1371 Control
:= TGUITextButton
.Create(Proc
, FFontID
, fText
);
1372 with Control
as TGUITextButton
do
1374 ShowWindow
:= _ShowWindow
;
1375 FColor
:= MENU_ITEMSCTRL_COLOR
;
1379 ControlType
:= TGUITextButton
;
1381 Result
:= (Control
as TGUITextButton
);
1384 if FIndex
= -1 then FIndex
:= i
;
1389 procedure TGUIMenu
.AddLine(fText
: string);
1396 Text := TGUILabel
.Create(fText
, FFontID
);
1399 FColor
:= MENU_ITEMSTEXT_COLOR
;
1408 procedure TGUIMenu
.AddText(fText
: string; MaxWidth
: Word);
1413 l
:= GetLines(fText
, FFontID
, MaxWidth
);
1415 if l
= nil then Exit
;
1417 for a
:= 0 to High(l
) do
1422 Text := TGUILabel
.Create(l
[a
], FFontID
);
1425 with Text do begin FColor
:= _RGB(255, 0, 0); end;
1429 with Text do begin FColor
:= MENU_ITEMSTEXT_COLOR
; end;
1439 procedure TGUIMenu
.AddSpace
;
1453 constructor TGUIMenu
.Create(HeaderFont
, ItemsFont
: DWORD
; Header
: string);
1459 FFontID
:= ItemsFont
;
1460 FCounter
:= MENU_MARKERDELAY
;
1464 FHeader
:= TGUILabel
.Create(Header
, HeaderFont
);
1467 FX
:= (gScreenWidth
div 2)-(GetWidth
div 2);
1469 FColor
:= MAINMENU_HEADER_COLOR
;
1473 destructor TGUIMenu
.Destroy
;
1477 if FItems
<> nil then
1478 for a
:= 0 to High(FItems
) do
1492 procedure TGUIMenu
.Draw
;
1494 a
, locx
, locy
: Integer;
1498 if FHeader
<> nil then FHeader
.Draw
;
1500 if FItems
<> nil then
1501 for a
:= 0 to High(FItems
) do
1503 if FItems
[a
].Text <> nil then FItems
[a
].Text.Draw
;
1504 if FItems
[a
].Control
<> nil then FItems
[a
].Control
.Draw
;
1507 if (FIndex
<> -1) and (FCounter
> MENU_MARKERDELAY
div 2) then
1512 if FItems
[FIndex
].Text <> nil then
1514 locx
:= FItems
[FIndex
].Text.FX
;
1515 locy
:= FItems
[FIndex
].Text.FY
;
1517 if FItems
[FIndex
].Text.RightAlign
then
1519 locx
:= locx
+FItems
[FIndex
].Text.FMaxWidth
-FItems
[FIndex
].Text.GetWidth
;
1522 else if FItems
[FIndex
].Control
<> nil then
1524 locx
:= FItems
[FIndex
].Control
.FX
;
1525 locy
:= FItems
[FIndex
].Control
.FY
;
1528 locx
:= locx
-e_CharFont_GetMaxWidth(FFontID
);
1530 e_CharFont_PrintEx(FFontID
, locx
, locy
, #16, _RGB(255, 0, 0));
1534 function TGUIMenu
.GetControl(aName
: String): TGUIControl
;
1540 if FItems
<> nil then
1541 for a
:= 0 to High(FItems
) do
1542 if FItems
[a
].Control
<> nil then
1543 if LowerCase(FItems
[a
].Control
.Name
) = LowerCase(aName
) then
1545 Result
:= FItems
[a
].Control
;
1549 Assert(Result
<> nil, 'GUI control "'+aName
+'" not found!');
1552 function TGUIMenu
.GetControlsText(aName
: String): TGUILabel
;
1558 if FItems
<> nil then
1559 for a
:= 0 to High(FItems
) do
1560 if FItems
[a
].Control
<> nil then
1561 if LowerCase(FItems
[a
].Control
.Name
) = LowerCase(aName
) then
1563 Result
:= FItems
[a
].Text;
1567 Assert(Result
<> nil, 'GUI control''s text "'+aName
+'" not found!');
1570 function TGUIMenu
.NewItem
: Integer;
1572 SetLength(FItems
, Length(FItems
)+1);
1573 Result
:= High(FItems
);
1576 procedure TGUIMenu
.OnMessage(var Msg
: TMessage
);
1581 if not FEnabled
then Exit
;
1585 if FItems
= nil then Exit
;
1588 for a
:= 0 to High(FItems
) do
1589 if FItems
[a
].Control
<> nil then
1595 if not ok
then Exit
;
1597 if (Msg
.Msg
= WM_KEYDOWN
) and (FIndex
<> -1) and (FItems
[FIndex
].Control
<> nil) and
1598 (FItems
[FIndex
].Control
.WantActivationKey(Msg
.wParam
)) then
1600 FItems
[FIndex
].Control
.OnMessage(Msg
);
1601 g_Sound_PlayEx(MENU_CLICKSOUND
);
1609 IK_UP
, IK_KPUP
, VK_UP
,JOY0_UP
, JOY1_UP
, JOY2_UP
, JOY3_UP
:
1614 if c
> Length(FItems
) then
1621 if FIndex
< 0 then FIndex
:= High(FItems
);
1622 until (FItems
[FIndex
].Control
<> nil) and
1623 (FItems
[FIndex
].Control
.Enabled
);
1627 g_Sound_PlayEx(MENU_CHANGESOUND
);
1630 IK_DOWN
, IK_KPDOWN
, VK_DOWN
, JOY0_DOWN
, JOY1_DOWN
, JOY2_DOWN
, JOY3_DOWN
:
1635 if c
> Length(FItems
) then
1642 if FIndex
> High(FItems
) then FIndex
:= 0;
1643 until (FItems
[FIndex
].Control
<> nil) and
1644 (FItems
[FIndex
].Control
.Enabled
);
1648 g_Sound_PlayEx(MENU_CHANGESOUND
);
1651 IK_LEFT
, IK_RIGHT
, IK_KPLEFT
, IK_KPRIGHT
, VK_LEFT
, VK_RIGHT
,
1652 JOY0_LEFT
, JOY1_LEFT
, JOY2_LEFT
, JOY3_LEFT
,
1653 JOY0_RIGHT
, JOY1_RIGHT
, JOY2_RIGHT
, JOY3_RIGHT
:
1655 if FIndex
<> -1 then
1656 if FItems
[FIndex
].Control
<> nil then
1657 FItems
[FIndex
].Control
.OnMessage(Msg
);
1659 IK_RETURN
, IK_KPRETURN
, VK_FIRE
, VK_OPEN
, JOY0_ATTACK
, JOY1_ATTACK
, JOY2_ATTACK
, JOY3_ATTACK
:
1661 if FIndex
<> -1 then
1663 if FItems
[FIndex
].Control
<> nil then FItems
[FIndex
].Control
.OnMessage(Msg
);
1665 g_Sound_PlayEx(MENU_CLICKSOUND
);
1669 if FYesNo
and (length(FItems
) > 1) then
1671 Msg
.wParam
:= IK_RETURN
; // to register keypress
1672 FIndex
:= High(FItems
)-1;
1673 if FItems
[FIndex
].Control
<> nil then FItems
[FIndex
].Control
.OnMessage(Msg
);
1676 if FYesNo
and (length(FItems
) > 1) then
1678 Msg
.wParam
:= IK_RETURN
; // to register keypress
1679 FIndex
:= High(FItems
);
1680 if FItems
[FIndex
].Control
<> nil then FItems
[FIndex
].Control
.OnMessage(Msg
);
1687 procedure TGUIMenu
.ReAlign();
1689 a
, tx
, cx
, w
, h
: Integer;
1690 cww
: array of Integer; // cached widths
1693 if FItems
= nil then Exit
;
1695 SetLength(cww
, length(FItems
));
1697 for a
:= 0 to High(FItems
) do
1699 if FItems
[a
].Text <> nil then
1701 cww
[a
] := FItems
[a
].Text.GetWidth
;
1702 if maxcww
< cww
[a
] then maxcww
:= cww
[a
];
1713 for a
:= 0 to High(FItems
) do
1716 if FItems
[a
].Text <> nil then w
:= FItems
[a
].Text.GetWidth
;
1717 if FItems
[a
].Control
<> nil then
1720 if FItems
[a
].ControlType
= TGUILabel
then w
:= w
+(FItems
[a
].Control
as TGUILabel
).GetWidth
1721 else if FItems
[a
].ControlType
= TGUITextButton
then w
:= w
+(FItems
[a
].Control
as TGUITextButton
).GetWidth
1722 else if FItems
[a
].ControlType
= TGUIScroll
then w
:= w
+(FItems
[a
].Control
as TGUIScroll
).GetWidth
1723 else if FItems
[a
].ControlType
= TGUISwitch
then w
:= w
+(FItems
[a
].Control
as TGUISwitch
).GetWidth
1724 else if FItems
[a
].ControlType
= TGUIEdit
then w
:= w
+(FItems
[a
].Control
as TGUIEdit
).GetWidth
1725 else if FItems
[a
].ControlType
= TGUIKeyRead
then w
:= w
+(FItems
[a
].Control
as TGUIKeyRead
).GetWidth
1726 else if FItems
[a
].ControlType
= TGUIKeyRead2
then w
:= w
+(FItems
[a
].Control
as TGUIKeyRead2
).GetWidth
1727 else if FItems
[a
].ControlType
= TGUIListBox
then w
:= w
+(FItems
[a
].Control
as TGUIListBox
).GetWidth
1728 else if FItems
[a
].ControlType
= TGUIFileListBox
then w
:= w
+(FItems
[a
].Control
as TGUIFileListBox
).GetWidth
1729 else if FItems
[a
].ControlType
= TGUIMemo
then w
:= w
+(FItems
[a
].Control
as TGUIMemo
).GetWidth
;
1731 tx
:= Min(tx
, (gScreenWidth
div 2)-(w
div 2));
1736 for a
:= 0 to High(FItems
) do
1740 if (Text <> nil) and (Control
= nil) then Continue
;
1742 if Text <> nil then w
:= tx
+Text.GetWidth
;
1743 if w
> cx
then cx
:= w
;
1747 cx
:= cx
+MENU_HSPACE
;
1749 h
:= FHeader
.GetHeight
*2+MENU_VSPACE
*(Length(FItems
)-1);
1751 for a
:= 0 to High(FItems
) do
1755 if (ControlType
= TGUIListBox
) or (ControlType
= TGUIFileListBox
) then
1756 h
:= h
+(FItems
[a
].Control
as TGUIListBox
).GetHeight()
1758 h
:= h
+e_CharFont_GetMaxHeight(FFontID
);
1762 h
:= (gScreenHeight
div 2)-(h
div 2);
1766 FX
:= (gScreenWidth
div 2)-(GetWidth
div 2);
1769 Inc(h
, GetHeight
*2);
1772 for a
:= 0 to High(FItems
) do
1784 if Text.RightAlign
and (length(cww
) > a
) then
1786 //Text.FX := Text.FX+maxcww;
1787 Text.FMaxWidth
:= maxcww
;
1791 if Control
<> nil then
1808 if (ControlType
= TGUIListBox
) or (ControlType
= TGUIFileListBox
) then Inc(h
, (Control
as TGUIListBox
).GetHeight
+MENU_VSPACE
)
1809 else if ControlType
= TGUIMemo
then Inc(h
, (Control
as TGUIMemo
).GetHeight
+MENU_VSPACE
)
1810 else Inc(h
, e_CharFont_GetMaxHeight(FFontID
)+MENU_VSPACE
);
1814 // another ugly hack
1815 if FYesNo
and (length(FItems
) > 1) then
1818 for a
:= High(FItems
)-1 to High(FItems
) do
1820 if (FItems
[a
].Control
<> nil) and (FItems
[a
].ControlType
= TGUITextButton
) then
1822 cx
:= (FItems
[a
].Control
as TGUITextButton
).GetWidth
;
1823 if cx
> w
then w
:= cx
;
1828 for a
:= High(FItems
)-1 to High(FItems
) do
1830 if (FItems
[a
].Control
<> nil) and (FItems
[a
].ControlType
= TGUITextButton
) then
1832 FItems
[a
].Control
.FX
:= (gScreenWidth
-w
) div 2;
1839 function TGUIMenu
.AddScroll(fText
: string): TGUIScroll
;
1846 Control
:= TGUIScroll
.Create();
1848 Text := TGUILabel
.Create(fText
, FFontID
);
1851 FColor
:= MENU_ITEMSTEXT_COLOR
;
1854 ControlType
:= TGUIScroll
;
1856 Result
:= (Control
as TGUIScroll
);
1859 if FIndex
= -1 then FIndex
:= i
;
1864 function TGUIMenu
.AddSwitch(fText
: string): TGUISwitch
;
1871 Control
:= TGUISwitch
.Create(FFontID
);
1872 (Control
as TGUISwitch
).FColor
:= MENU_ITEMSCTRL_COLOR
;
1874 Text := TGUILabel
.Create(fText
, FFontID
);
1877 FColor
:= MENU_ITEMSTEXT_COLOR
;
1880 ControlType
:= TGUISwitch
;
1882 Result
:= (Control
as TGUISwitch
);
1885 if FIndex
= -1 then FIndex
:= i
;
1890 function TGUIMenu
.AddEdit(fText
: string): TGUIEdit
;
1897 Control
:= TGUIEdit
.Create(FFontID
);
1898 with Control
as TGUIEdit
do
1900 FWindow
:= Self
.FWindow
;
1901 FColor
:= MENU_ITEMSCTRL_COLOR
;
1904 if fText
= '' then Text := nil else
1906 Text := TGUILabel
.Create(fText
, FFontID
);
1907 Text.FColor
:= MENU_ITEMSTEXT_COLOR
;
1910 ControlType
:= TGUIEdit
;
1912 Result
:= (Control
as TGUIEdit
);
1915 if FIndex
= -1 then FIndex
:= i
;
1920 procedure TGUIMenu
.Update
;
1926 if FCounter
= 0 then FCounter
:= MENU_MARKERDELAY
else Dec(FCounter
);
1928 if FItems
<> nil then
1929 for a
:= 0 to High(FItems
) do
1930 if FItems
[a
].Control
<> nil then
1931 (FItems
[a
].Control
as FItems
[a
].ControlType
).Update
;
1934 function TGUIMenu
.AddKeyRead(fText
: string): TGUIKeyRead
;
1941 Control
:= TGUIKeyRead
.Create(FFontID
);
1942 with Control
as TGUIKeyRead
do
1944 FWindow
:= Self
.FWindow
;
1945 FColor
:= MENU_ITEMSCTRL_COLOR
;
1948 Text := TGUILabel
.Create(fText
, FFontID
);
1951 FColor
:= MENU_ITEMSTEXT_COLOR
;
1954 ControlType
:= TGUIKeyRead
;
1956 Result
:= (Control
as TGUIKeyRead
);
1959 if FIndex
= -1 then FIndex
:= i
;
1964 function TGUIMenu
.AddKeyRead2(fText
: string): TGUIKeyRead2
;
1971 Control
:= TGUIKeyRead2
.Create(FFontID
);
1972 with Control
as TGUIKeyRead2
do
1974 FWindow
:= Self
.FWindow
;
1975 FColor
:= MENU_ITEMSCTRL_COLOR
;
1978 Text := TGUILabel
.Create(fText
, FFontID
);
1981 FColor
:= MENU_ITEMSCTRL_COLOR
; //MENU_ITEMSTEXT_COLOR;
1985 ControlType
:= TGUIKeyRead2
;
1987 Result
:= (Control
as TGUIKeyRead2
);
1990 if FIndex
= -1 then FIndex
:= i
;
1995 function TGUIMenu
.AddList(fText
: string; Width
, Height
: Word): TGUIListBox
;
2002 Control
:= TGUIListBox
.Create(FFontID
, Width
, Height
);
2003 with Control
as TGUIListBox
do
2005 FWindow
:= Self
.FWindow
;
2006 FActiveColor
:= MENU_ITEMSCTRL_COLOR
;
2007 FUnActiveColor
:= MENU_ITEMSTEXT_COLOR
;
2010 Text := TGUILabel
.Create(fText
, FFontID
);
2013 FColor
:= MENU_ITEMSTEXT_COLOR
;
2016 ControlType
:= TGUIListBox
;
2018 Result
:= (Control
as TGUIListBox
);
2021 if FIndex
= -1 then FIndex
:= i
;
2026 function TGUIMenu
.AddFileList(fText
: string; Width
, Height
: Word): TGUIFileListBox
;
2033 Control
:= TGUIFileListBox
.Create(FFontID
, Width
, Height
);
2034 with Control
as TGUIFileListBox
do
2036 FWindow
:= Self
.FWindow
;
2037 FActiveColor
:= MENU_ITEMSCTRL_COLOR
;
2038 FUnActiveColor
:= MENU_ITEMSTEXT_COLOR
;
2041 if fText
= '' then Text := nil else
2043 Text := TGUILabel
.Create(fText
, FFontID
);
2044 Text.FColor
:= MENU_ITEMSTEXT_COLOR
;
2047 ControlType
:= TGUIFileListBox
;
2049 Result
:= (Control
as TGUIFileListBox
);
2052 if FIndex
= -1 then FIndex
:= i
;
2057 function TGUIMenu
.AddLabel(fText
: string): TGUILabel
;
2064 Control
:= TGUILabel
.Create('', FFontID
);
2065 with Control
as TGUILabel
do
2067 FWindow
:= Self
.FWindow
;
2068 FColor
:= MENU_ITEMSCTRL_COLOR
;
2071 Text := TGUILabel
.Create(fText
, FFontID
);
2074 FColor
:= MENU_ITEMSTEXT_COLOR
;
2077 ControlType
:= TGUILabel
;
2079 Result
:= (Control
as TGUILabel
);
2082 if FIndex
= -1 then FIndex
:= i
;
2087 function TGUIMenu
.AddMemo(fText
: string; Width
, Height
: Word): TGUIMemo
;
2094 Control
:= TGUIMemo
.Create(FFontID
, Width
, Height
);
2095 with Control
as TGUIMemo
do
2097 FWindow
:= Self
.FWindow
;
2098 FColor
:= MENU_ITEMSTEXT_COLOR
;
2101 if fText
= '' then Text := nil else
2103 Text := TGUILabel
.Create(fText
, FFontID
);
2104 Text.FColor
:= MENU_ITEMSTEXT_COLOR
;
2107 ControlType
:= TGUIMemo
;
2109 Result
:= (Control
as TGUIMemo
);
2112 if FIndex
= -1 then FIndex
:= i
;
2117 procedure TGUIMenu
.UpdateIndex();
2125 if (FIndex
< 0) or (FIndex
> High(FItems
)) then
2131 if FItems
[FIndex
].Control
.Enabled
then
2140 constructor TGUIScroll
.Create
;
2145 FOnChangeEvent
:= nil;
2147 g_Texture_Get(SCROLL_LEFT
, FLeftID
);
2148 g_Texture_Get(SCROLL_RIGHT
, FRightID
);
2149 g_Texture_Get(SCROLL_MIDDLE
, FMiddleID
);
2150 g_Texture_Get(SCROLL_MARKER
, FMarkerID
);
2153 procedure TGUIScroll
.Draw
;
2159 e_Draw(FLeftID
, FX
, FY
, 0, True, False);
2160 e_Draw(FRightID
, FX
+8+(FMax
+1)*8, FY
, 0, True, False);
2162 for a
:= 0 to FMax
do
2163 e_Draw(FMiddleID
, FX
+8+a
*8, FY
, 0, True, False);
2165 e_Draw(FMarkerID
, FX
+8+FValue
*8, FY
, 0, True, False);
2168 procedure TGUIScroll
.FSetValue(a
: Integer);
2170 if a
> FMax
then FValue
:= FMax
else FValue
:= a
;
2173 function TGUIScroll
.GetWidth
: Integer;
2175 Result
:= 16+(FMax
+1)*8;
2178 procedure TGUIScroll
.OnMessage(var Msg
: TMessage
);
2180 if not FEnabled
then Exit
;
2188 IK_LEFT
, IK_KPLEFT
, VK_LEFT
, JOY0_LEFT
, JOY1_LEFT
, JOY2_LEFT
, JOY3_LEFT
:
2192 g_Sound_PlayEx(SCROLL_SUBSOUND
);
2193 if @FOnChangeEvent
<> nil then FOnChangeEvent(Self
);
2195 IK_RIGHT
, IK_KPRIGHT
, VK_RIGHT
, JOY0_RIGHT
, JOY1_RIGHT
, JOY2_RIGHT
, JOY3_RIGHT
:
2196 if FValue
< FMax
then
2199 g_Sound_PlayEx(SCROLL_ADDSOUND
);
2200 if @FOnChangeEvent
<> nil then FOnChangeEvent(Self
);
2207 procedure TGUIScroll
.Update
;
2215 procedure TGUISwitch
.AddItem(Item
: string);
2217 SetLength(FItems
, Length(FItems
)+1);
2218 FItems
[High(FItems
)] := Item
;
2220 if FIndex
= -1 then FIndex
:= 0;
2223 constructor TGUISwitch
.Create(FontID
: DWORD
);
2229 FFont
:= TFont
.Create(FontID
, TFontType
.Character
);
2232 procedure TGUISwitch
.Draw
;
2236 FFont
.Draw(FX
, FY
, FItems
[FIndex
], FColor
.R
, FColor
.G
, FColor
.B
);
2239 function TGUISwitch
.GetText
: string;
2241 if FIndex
<> -1 then Result
:= FItems
[FIndex
]
2245 function TGUISwitch
.GetWidth
: Integer;
2252 if FItems
= nil then Exit
;
2254 for a
:= 0 to High(FItems
) do
2256 FFont
.GetTextSize(FItems
[a
], w
, h
);
2257 if w
> Result
then Result
:= w
;
2261 procedure TGUISwitch
.OnMessage(var Msg
: TMessage
);
2263 if not FEnabled
then Exit
;
2267 if FItems
= nil then Exit
;
2272 IK_RETURN
, IK_RIGHT
, IK_KPRETURN
, IK_KPRIGHT
, VK_FIRE
, VK_OPEN
, VK_RIGHT
,
2273 JOY0_RIGHT
, JOY1_RIGHT
, JOY2_RIGHT
, JOY3_RIGHT
,
2274 JOY0_ATTACK
, JOY1_ATTACK
, JOY2_ATTACK
, JOY3_ATTACK
:
2276 if FIndex
< High(FItems
) then
2281 g_Sound_PlayEx(SCROLL_ADDSOUND
);
2283 if @FOnChangeEvent
<> nil then
2284 FOnChangeEvent(Self
);
2287 IK_LEFT
, IK_KPLEFT
, VK_LEFT
,
2288 JOY0_LEFT
, JOY1_LEFT
, JOY2_LEFT
, JOY3_LEFT
:
2293 FIndex
:= High(FItems
);
2295 g_Sound_PlayEx(SCROLL_SUBSOUND
);
2297 if @FOnChangeEvent
<> nil then
2298 FOnChangeEvent(Self
);
2304 procedure TGUISwitch
.Update
;
2312 constructor TGUIEdit
.Create(FontID
: DWORD
);
2316 FFont
:= TFont
.Create(FontID
, TFontType
.Character
);
2322 g_Texture_Get(EDIT_LEFT
, FLeftID
);
2323 g_Texture_Get(EDIT_RIGHT
, FRightID
);
2324 g_Texture_Get(EDIT_MIDDLE
, FMiddleID
);
2327 procedure TGUIEdit
.Draw
;
2334 e_Draw(FLeftID
, FX
, FY
, 0, True, False);
2335 e_Draw(FRightID
, FX
+8+FWidth
*16, FY
, 0, True, False);
2337 for c
:= 0 to FWidth
-1 do
2338 e_Draw(FMiddleID
, FX
+8+c
*16, FY
, 0, True, False);
2343 if FInvalid
and (FWindow
.FActiveControl
<> self
) then begin r
:= 128; g
:= 128; b
:= 128; end;
2344 FFont
.Draw(FX
+8, FY
, FText
, r
, g
, b
);
2346 if (FWindow
.FActiveControl
= self
) then
2348 FFont
.GetTextSize(Copy(FText
, 1, FCaretPos
), w
, h
);
2349 h
:= e_CharFont_GetMaxHeight(FFont
.ID
);
2350 e_DrawLine(2, FX
+8+w
, FY
+h
-3, FX
+8+w
+EDIT_CURSORLEN
, FY
+h
-3,
2351 EDIT_CURSORCOLOR
.R
, EDIT_CURSORCOLOR
.G
, EDIT_CURSORCOLOR
.B
);
2355 function TGUIEdit
.GetWidth
: Integer;
2357 Result
:= 16+FWidth
*16;
2360 procedure TGUIEdit
.OnMessage(var Msg
: TMessage
);
2362 if not FEnabled
then Exit
;
2371 if (wParam
in [48..57]) and (Chr(wParam
) <> '`') then
2372 if Length(Text) < FMaxLength
then
2374 Insert(Chr(wParam
), FText
, FCaretPos
+ 1);
2380 if (wParam
in [32..255]) and (Chr(wParam
) <> '`') then
2381 if Length(Text) < FMaxLength
then
2383 Insert(Chr(wParam
), FText
, FCaretPos
+ 1);
2391 Delete(FText
, FCaretPos
, 1);
2392 if FCaretPos
> 0 then Dec(FCaretPos
);
2394 IK_DELETE
: Delete(FText
, FCaretPos
+ 1, 1);
2395 IK_END
, IK_KPEND
: FCaretPos
:= Length(FText
);
2396 IK_HOME
, IK_KPHOME
: FCaretPos
:= 0;
2397 IK_LEFT
, IK_KPLEFT
, VK_LEFT
, JOY0_LEFT
, JOY1_LEFT
, JOY2_LEFT
, JOY3_LEFT
: if FCaretPos
> 0 then Dec(FCaretPos
);
2398 IK_RIGHT
, IK_KPRIGHT
, VK_RIGHT
, JOY0_RIGHT
, JOY1_RIGHT
, JOY2_RIGHT
, JOY3_RIGHT
: if FCaretPos
< Length(FText
) then Inc(FCaretPos
);
2399 IK_RETURN
, IK_KPRETURN
, VK_FIRE
, VK_OPEN
, JOY0_ATTACK
, JOY1_ATTACK
, JOY2_ATTACK
, JOY3_ATTACK
:
2402 if FActiveControl
<> Self
then
2405 if @FOnEnterEvent
<> nil then FOnEnterEvent(Self
);
2409 if FDefControl
<> '' then SetActive(GetControl(FDefControl
))
2410 else SetActive(nil);
2411 if @FOnChangeEvent
<> nil then FOnChangeEvent(Self
);
2417 g_GUIGrabInput
:= (@FOnEnterEvent
= nil) and (FWindow
.FActiveControl
= Self
);
2418 g_Touch_ShowKeyboard(g_GUIGrabInput
)
2421 procedure TGUIEdit
.SetText(Text: string);
2423 if Length(Text) > FMaxLength
then SetLength(Text, FMaxLength
);
2425 FCaretPos
:= Length(FText
);
2428 procedure TGUIEdit
.Update
;
2435 constructor TGUIKeyRead
.Create(FontID
: DWORD
);
2441 FFont
:= TFont
.Create(FontID
, TFontType
.Character
);
2444 procedure TGUIKeyRead
.Draw
;
2448 FFont
.Draw(FX
, FY
, IfThen(FIsQuery
, KEYREAD_QUERY
, IfThen(FKey
<> 0, e_KeyNames
[FKey
], KEYREAD_CLEAR
)),
2449 FColor
.R
, FColor
.G
, FColor
.B
);
2452 function TGUIKeyRead
.GetWidth
: Integer;
2459 for a
:= 0 to 255 do
2461 FFont
.GetTextSize(e_KeyNames
[a
], w
, h
);
2462 Result
:= Max(Result
, w
);
2465 FFont
.GetTextSize(KEYREAD_QUERY
, w
, h
);
2466 if w
> Result
then Result
:= w
;
2468 FFont
.GetTextSize(KEYREAD_CLEAR
, w
, h
);
2469 if w
> Result
then Result
:= w
;
2472 function TGUIKeyRead
.WantActivationKey (key
: LongInt): Boolean;
2475 (key
= IK_BACKSPACE
) or
2479 procedure TGUIKeyRead
.OnMessage(var Msg
: TMessage
);
2480 procedure actDefCtl ();
2483 if FDefControl
<> '' then
2484 SetActive(GetControl(FDefControl
))
2492 if not FEnabled
then
2501 if FIsQuery
then actDefCtl();
2504 IK_RETURN
, IK_KPRETURN
, VK_FIRE
, VK_OPEN
, JOY0_ATTACK
, JOY1_ATTACK
, JOY2_ATTACK
, JOY3_ATTACK
:
2506 if not FIsQuery
then
2509 if FActiveControl
<> Self
then
2514 else if (wParam
< VK_FIRSTKEY
) and (wParam
> VK_LASTKEY
) then
2516 // FKey := IK_ENTER; // <Enter>
2522 IK_BACKSPACE
: // clear keybinding if we aren't waiting for a key
2524 if not FIsQuery
then
2534 if not FIsQuery
and (wParam
= IK_BACKSPACE
) then
2539 else if FIsQuery
then
2542 IK_ENTER
, IK_KPRETURN
, VK_FIRSTKEY
..VK_LASTKEY (*, JOY0_ATTACK, JOY1_ATTACK, JOY2_ATTACK, JOY3_ATTACK*): // Not <Enter
2544 if e_KeyNames
[wParam
] <> '' then
2553 g_GUIGrabInput
:= FIsQuery
2558 constructor TGUIKeyRead2
.Create(FontID
: DWORD
);
2571 FFont
:= TFont
.Create(FontID
, TFontType
.Character
);
2573 FMaxKeyNameWdt
:= 0;
2574 for a
:= 0 to 255 do
2576 FFont
.GetTextSize(e_KeyNames
[a
], w
, h
);
2577 FMaxKeyNameWdt
:= Max(FMaxKeyNameWdt
, w
);
2580 FMaxKeyNameWdt
:= FMaxKeyNameWdt
-(FMaxKeyNameWdt
div 3);
2582 FFont
.GetTextSize(KEYREAD_QUERY
, w
, h
);
2583 if w
> FMaxKeyNameWdt
then FMaxKeyNameWdt
:= w
;
2585 FFont
.GetTextSize(KEYREAD_CLEAR
, w
, h
);
2586 if w
> FMaxKeyNameWdt
then FMaxKeyNameWdt
:= w
;
2589 procedure TGUIKeyRead2
.Draw
;
2590 procedure drawText (idx
: Integer);
2596 if idx
= 0 then kk
:= FKey0
else kk
:= FKey1
;
2598 if idx
= 0 then x
:= FX
+8 else x
:= FX
+8+FMaxKeyNameWdt
+16;
2602 if FKeyIdx
= idx
then begin r
:= 255; g
:= 255; b
:= 255; end;
2603 if FIsQuery
and (FKeyIdx
= idx
) then
2604 FFont
.Draw(x
, y
, KEYREAD_QUERY
, r
, g
, b
)
2606 FFont
.Draw(x
, y
, IfThen(kk
<> 0, e_KeyNames
[kk
], KEYREAD_CLEAR
), r
, g
, b
);
2612 //FFont.Draw(FX+8, FY, IfThen(FIsQuery and (FKeyIdx = 0), KEYREAD_QUERY, IfThen(FKey0 <> 0, e_KeyNames[FKey0], KEYREAD_CLEAR)), FColor.R, FColor.G, FColor.B);
2613 //FFont.Draw(FX+8+FMaxKeyNameWdt+16, FY, IfThen(FIsQuery and (FKeyIdx = 1), KEYREAD_QUERY, IfThen(FKey1 <> 0, e_KeyNames[FKey1], KEYREAD_CLEAR)), FColor.R, FColor.G, FColor.B);
2618 function TGUIKeyRead2
.GetWidth
: Integer;
2620 Result
:= FMaxKeyNameWdt
*2+8+8+16;
2623 function TGUIKeyRead2
.WantActivationKey (key
: LongInt): Boolean;
2626 IK_BACKSPACE
, IK_LEFT
, IK_RIGHT
, IK_KPLEFT
, IK_KPRIGHT
, VK_LEFT
, VK_RIGHT
,
2627 JOY0_LEFT
, JOY1_LEFT
, JOY2_LEFT
, JOY3_LEFT
,
2628 JOY0_RIGHT
, JOY1_RIGHT
, JOY2_RIGHT
, JOY3_RIGHT
:
2635 procedure TGUIKeyRead2
.OnMessage(var Msg
: TMessage
);
2636 procedure actDefCtl ();
2639 if FDefControl
<> '' then
2640 SetActive(GetControl(FDefControl
))
2648 if not FEnabled
then
2657 if FIsQuery
then actDefCtl();
2660 IK_RETURN
, IK_KPRETURN
, VK_FIRE
, VK_OPEN
, JOY0_ATTACK
, JOY1_ATTACK
, JOY2_ATTACK
, JOY3_ATTACK
:
2662 if not FIsQuery
then
2665 if FActiveControl
<> Self
then
2670 else if (wParam
< VK_FIRSTKEY
) and (wParam
> VK_LASTKEY
) then
2672 // if (FKeyIdx = 0) then FKey0 := IK_ENTER else FKey1 := IK_ENTER; // <Enter>
2673 if (FKeyIdx
= 0) then FKey0
:= wParam
else FKey1
:= wParam
;
2678 IK_BACKSPACE
: // clear keybinding if we aren't waiting for a key
2680 if not FIsQuery
then
2682 if (FKeyIdx
= 0) then FKey0
:= 0 else FKey1
:= 0;
2686 IK_LEFT
, IK_KPLEFT
, VK_LEFT
, JOY0_LEFT
, JOY1_LEFT
, JOY2_LEFT
, JOY3_LEFT
:
2687 if not FIsQuery
then
2692 IK_RIGHT
, IK_KPRIGHT
, VK_RIGHT
, JOY0_RIGHT
, JOY1_RIGHT
, JOY2_RIGHT
, JOY3_RIGHT
:
2693 if not FIsQuery
then
2702 if not FIsQuery
and (wParam
= IK_BACKSPACE
) then
2704 if (FKeyIdx
= 0) then FKey0
:= 0 else FKey1
:= 0;
2707 else if FIsQuery
then
2710 IK_ENTER
, IK_KPRETURN
, VK_FIRSTKEY
..VK_LASTKEY (*, JOY0_ATTACK, JOY1_ATTACK, JOY2_ATTACK, JOY3_ATTACK*): // Not <Enter
2712 if e_KeyNames
[wParam
] <> '' then
2714 if (FKeyIdx
= 0) then FKey0
:= wParam
else FKey1
:= wParam
;
2723 g_GUIGrabInput
:= FIsQuery
2729 constructor TGUIModelView
.Create
;
2736 destructor TGUIModelView
.Destroy
;
2743 procedure TGUIModelView
.Draw
;
2747 DrawBox(FX
, FY
, 4, 4);
2749 if FModel
<> nil then
2750 r_PlayerModel_Draw(FModel
, FX
+4, FY
+4);
2753 procedure TGUIModelView
.NextAnim();
2755 if FModel
= nil then
2758 if FModel
.Animation
< A_PAIN
then
2759 FModel
.ChangeAnimation(FModel
.Animation
+1, True)
2761 FModel
.ChangeAnimation(A_STAND
, True);
2764 procedure TGUIModelView
.NextWeapon();
2766 if FModel
= nil then
2769 if FModel
.Weapon
< WP_LAST
then
2770 FModel
.SetWeapon(FModel
.Weapon
+1)
2772 FModel
.SetWeapon(WEAPON_KASTET
);
2775 procedure TGUIModelView
.OnMessage(var Msg
: TMessage
);
2781 procedure TGUIModelView
.SetColor(Red
, Green
, Blue
: Byte);
2783 if FModel
<> nil then FModel
.SetColor(Red
, Green
, Blue
);
2786 procedure TGUIModelView
.SetModel(ModelName
: string);
2790 FModel
:= g_PlayerModel_Get(ModelName
);
2793 procedure TGUIModelView
.Update
;
2800 if FModel
<> nil then FModel
.Update
;
2805 constructor TGUIMapPreview
.Create();
2811 destructor TGUIMapPreview
.Destroy();
2817 procedure TGUIMapPreview
.Draw();
2824 DrawBox(FX
, FY
, MAPPREVIEW_WIDTH
, MAPPREVIEW_HEIGHT
);
2826 if (FMapSize
.X
<= 0) or (FMapSize
.Y
<= 0) then
2829 e_DrawFillQuad(FX
+4, FY
+4,
2830 FX
+4 + Trunc(FMapSize
.X
/ FScale
) - 1,
2831 FY
+4 + Trunc(FMapSize
.Y
/ FScale
) - 1,
2834 if FMapData
<> nil then
2835 for a
:= 0 to High(FMapData
) do
2838 if X1
> MAPPREVIEW_WIDTH
*16 then Continue
;
2839 if Y1
> MAPPREVIEW_HEIGHT
*16 then Continue
;
2841 if X2
< 0 then Continue
;
2842 if Y2
< 0 then Continue
;
2844 if X2
> MAPPREVIEW_WIDTH
*16 then X2
:= MAPPREVIEW_WIDTH
*16;
2845 if Y2
> MAPPREVIEW_HEIGHT
*16 then Y2
:= MAPPREVIEW_HEIGHT
*16;
2847 if X1
< 0 then X1
:= 0;
2848 if Y1
< 0 then Y1
:= 0;
2889 if ((X2
-X1
) > 0) and ((Y2
-Y1
) > 0) then
2890 e_DrawFillQuad(FX
+4 + X1
, FY
+4 + Y1
,
2891 FX
+4 + X2
- 1, FY
+4 + Y2
- 1, r
, g
, b
, 0);
2895 procedure TGUIMapPreview
.OnMessage(var Msg
: TMessage
);
2901 procedure TGUIMapPreview
.SetMap(Res
: string);
2906 //header: TMapHeaderRec_1;
2911 map
: TDynRecord
= nil;
2918 FileName
:= g_ExtractWadName(Res
);
2920 WAD
:= TWADFile
.Create();
2921 if not WAD
.ReadFile(FileName
) then
2927 //k8: ignores path again
2928 if not WAD
.GetMapResource(g_ExtractFileName(Res
), Data
, Len
) then
2937 map
:= g_Map_ParseMap(Data
, Len
);
2947 if (map
= nil) then exit
;
2950 panlist
:= map
.field
['panel'];
2951 //header := GetMapHeader(map);
2953 FMapSize
.X
:= map
.Width
div 16;
2954 FMapSize
.Y
:= map
.Height
div 16;
2956 rX
:= Ceil(map
.Width
/ (MAPPREVIEW_WIDTH
*256.0));
2957 rY
:= Ceil(map
.Height
/ (MAPPREVIEW_HEIGHT
*256.0));
2958 FScale
:= max(rX
, rY
);
2962 if (panlist
<> nil) then
2964 for pan
in panlist
do
2966 if (pan
.PanelType
and (PANEL_WALL
or PANEL_CLOSEDOOR
or
2967 PANEL_STEP
or PANEL_WATER
or
2968 PANEL_ACID1
or PANEL_ACID2
)) <> 0 then
2970 SetLength(FMapData
, Length(FMapData
)+1);
2971 with FMapData
[High(FMapData
)] do
2976 X2
:= (pan
.X
+ pan
.Width
) div 16;
2977 Y2
:= (pan
.Y
+ pan
.Height
) div 16;
2979 X1
:= Trunc(X1
/FScale
+ 0.5);
2980 Y1
:= Trunc(Y1
/FScale
+ 0.5);
2981 X2
:= Trunc(X2
/FScale
+ 0.5);
2982 Y2
:= Trunc(Y2
/FScale
+ 0.5);
2984 if (X1
<> X2
) or (Y1
<> Y2
) then
2992 PanelType
:= pan
.PanelType
;
2998 //writeln('freeing map');
3003 procedure TGUIMapPreview
.ClearMap();
3005 SetLength(FMapData
, 0);
3012 procedure TGUIMapPreview
.Update();
3018 function TGUIMapPreview
.GetScaleStr(): String;
3020 if FScale
> 0.0 then
3022 Result
:= FloatToStrF(FScale
*16.0, ffFixed
, 3, 3);
3023 while (Result
[Length(Result
)] = '0') do
3024 Delete(Result
, Length(Result
), 1);
3025 if (Result
[Length(Result
)] = ',') or (Result
[Length(Result
)] = '.') then
3026 Delete(Result
, Length(Result
), 1);
3027 Result
:= '1 : ' + Result
;
3035 procedure TGUIListBox
.AddItem(Item
: string);
3037 SetLength(FItems
, Length(FItems
)+1);
3038 FItems
[High(FItems
)] := Item
;
3040 if FSort
then g_gui
.Sort(FItems
);
3043 function TGUIListBox
.ItemExists (item
: String): Boolean;
3047 while (i
<= High(FItems
)) and (FItems
[i
] <> item
) do Inc(i
);
3048 result
:= i
<= High(FItems
)
3051 procedure TGUIListBox
.Clear
;
3059 constructor TGUIListBox
.Create(FontID
: DWORD
; Width
, Height
: Word);
3063 FFont
:= TFont
.Create(FontID
, TFontType
.Character
);
3068 FOnChangeEvent
:= nil;
3070 FDrawScroll
:= True;
3073 procedure TGUIListBox
.Draw
;
3081 if FDrawBack
then DrawBox(FX
, FY
, FWidth
+1, FHeight
);
3083 DrawScroll(FX
+4+FWidth
*16, FY
+4, FHeight
, (FStartLine
> 0) and (FItems
<> nil),
3084 (FStartLine
+FHeight
-1 < High(FItems
)) and (FItems
<> nil));
3086 if FItems
<> nil then
3087 for a
:= FStartLine
to Min(High(FItems
), FStartLine
+FHeight
-1) do
3091 FFont
.GetTextSize(s
, w2
, h2
);
3092 while (Length(s
) > 0) and (w2
> FWidth
*16) do
3094 SetLength(s
, Length(s
)-1);
3095 FFont
.GetTextSize(s
, w2
, h2
);
3099 FFont
.Draw(FX
+4, FY
+4+(a
-FStartLine
)*16, s
, FActiveColor
.R
, FActiveColor
.G
, FActiveColor
.B
)
3101 FFont
.Draw(FX
+4, FY
+4+(a
-FStartLine
)*16, s
, FUnActiveColor
.R
, FUnActiveColor
.G
, FUnActiveColor
.B
);
3105 function TGUIListBox
.GetHeight
: Integer;
3107 Result
:= 8+FHeight
*16;
3110 function TGUIListBox
.GetWidth
: Integer;
3112 Result
:= 8+(FWidth
+1)*16;
3115 procedure TGUIListBox
.OnMessage(var Msg
: TMessage
);
3119 if not FEnabled
then Exit
;
3123 if FItems
= nil then Exit
;
3136 FIndex
:= High(FItems
);
3137 FStartLine
:= Max(High(FItems
)-FHeight
+1, 0);
3139 IK_UP
, IK_LEFT
, IK_KPUP
, IK_KPLEFT
, VK_LEFT
, JOY0_LEFT
, JOY1_LEFT
, JOY2_LEFT
, JOY3_LEFT
:
3143 if FIndex
< FStartLine
then Dec(FStartLine
);
3144 if @FOnChangeEvent
<> nil then FOnChangeEvent(Self
);
3146 IK_DOWN
, IK_RIGHT
, IK_KPDOWN
, IK_KPRIGHT
, VK_RIGHT
, JOY0_RIGHT
, JOY1_RIGHT
, JOY2_RIGHT
, JOY3_RIGHT
:
3147 if FIndex
< High(FItems
) then
3150 if FIndex
> FStartLine
+FHeight
-1 then Inc(FStartLine
);
3151 if @FOnChangeEvent
<> nil then FOnChangeEvent(Self
);
3153 IK_RETURN
, IK_KPRETURN
, VK_FIRE
, VK_OPEN
, JOY0_ATTACK
, JOY1_ATTACK
, JOY2_ATTACK
, JOY3_ATTACK
:
3156 if FActiveControl
<> Self
then SetActive(Self
)
3158 if FDefControl
<> '' then SetActive(GetControl(FDefControl
))
3159 else SetActive(nil);
3163 for a
:= 0 to High(FItems
) do
3164 if (Length(FItems
[a
]) > 0) and (LowerCase(FItems
[a
][1]) = LowerCase(Chr(wParam
))) then
3167 FStartLine
:= Min(Max(FIndex
-1, 0), Length(FItems
)-FHeight
);
3168 if @FOnChangeEvent
<> nil then FOnChangeEvent(Self
);
3174 function TGUIListBox
.SelectedItem(): String;
3178 if (FIndex
< 0) or (FItems
= nil) or
3179 (FIndex
> High(FItems
)) then
3182 Result
:= FItems
[FIndex
];
3185 procedure TGUIListBox
.FSetItems(Items
: SSArray
);
3187 if FItems
<> nil then
3195 if FSort
then g_gui
.Sort(FItems
);
3198 procedure TGUIListBox
.SelectItem(Item
: String);
3202 if FItems
= nil then
3206 Item
:= LowerCase(Item
);
3208 for a
:= 0 to High(FItems
) do
3209 if LowerCase(FItems
[a
]) = Item
then
3215 if FIndex
< FHeight
then
3218 FStartLine
:= Min(FIndex
, Length(FItems
)-FHeight
);
3221 procedure TGUIListBox
.FSetIndex(aIndex
: Integer);
3223 if FItems
= nil then
3226 if (aIndex
< 0) or (aIndex
> High(FItems
)) then
3231 if FIndex
<= FHeight
then
3234 FStartLine
:= Min(FIndex
, Length(FItems
)-FHeight
);
3239 procedure TGUIFileListBox
.OnMessage(var Msg
: TMessage
);
3241 a
, b
: Integer; s
: AnsiString;
3243 if not FEnabled
then
3246 if FItems
= nil then
3257 if @FOnChangeEvent
<> nil then
3258 FOnChangeEvent(Self
);
3263 FIndex
:= High(FItems
);
3264 FStartLine
:= Max(High(FItems
)-FHeight
+1, 0);
3265 if @FOnChangeEvent
<> nil then
3266 FOnChangeEvent(Self
);
3269 IK_PAGEUP
, IK_KPPAGEUP
:
3271 if FIndex
> FHeight
then
3272 FIndex
:= FIndex
-FHeight
3276 if FStartLine
> FHeight
then
3277 FStartLine
:= FStartLine
-FHeight
3282 IK_PAGEDN
, IK_KPPAGEDN
:
3284 if FIndex
< High(FItems
)-FHeight
then
3285 FIndex
:= FIndex
+FHeight
3287 FIndex
:= High(FItems
);
3289 if FStartLine
< High(FItems
)-FHeight
then
3290 FStartLine
:= FStartLine
+FHeight
3292 FStartLine
:= High(FItems
)-FHeight
+1;
3295 IK_UP
, IK_LEFT
, IK_KPUP
, IK_KPLEFT
, VK_UP
, VK_LEFT
, JOY0_LEFT
, JOY1_LEFT
, JOY2_LEFT
, JOY3_LEFT
:
3299 if FIndex
< FStartLine
then
3301 if @FOnChangeEvent
<> nil then
3302 FOnChangeEvent(Self
);
3305 IK_DOWN
, IK_RIGHT
, IK_KPDOWN
, IK_KPRIGHT
, VK_DOWN
, VK_RIGHT
, JOY0_RIGHT
, JOY1_RIGHT
, JOY2_RIGHT
, JOY3_RIGHT
:
3306 if FIndex
< High(FItems
) then
3309 if FIndex
> FStartLine
+FHeight
-1 then
3311 if @FOnChangeEvent
<> nil then
3312 FOnChangeEvent(Self
);
3315 IK_RETURN
, IK_KPRETURN
, VK_FIRE
, VK_OPEN
, JOY0_ATTACK
, JOY1_ATTACK
, JOY2_ATTACK
, JOY3_ATTACK
:
3318 if FActiveControl
<> Self
then
3322 if FItems
[FIndex
][1] = #29 then // Ïàïêà
3324 if FItems
[FIndex
] = #29 + '..' then
3326 e_LogWritefln('TGUIFileListBox: Upper dir "%s" -> "%s"', [FSubPath
, e_UpperDir(FSubPath
)]);
3327 FSubPath
:= e_UpperDir(FSubPath
)
3331 s
:= Copy(AnsiString(FItems
[FIndex
]), 2);
3332 e_LogWritefln('TGUIFileListBox: Enter dir "%s" -> "%s"', [FSubPath
, e_CatPath(FSubPath
, s
)]);
3333 FSubPath
:= e_CatPath(FSubPath
, s
);
3340 if FDefControl
<> '' then
3341 SetActive(GetControl(FDefControl
))
3349 for b
:= FIndex
+ 1 to High(FItems
) + FIndex
do
3351 a
:= b
mod Length(FItems
);
3352 if ( (Length(FItems
[a
]) > 0) and
3353 (LowerCase(FItems
[a
][1]) = LowerCase(Chr(wParam
))) ) or
3354 ( (Length(FItems
[a
]) > 1) and
3355 (FItems
[a
][1] = #29) and // Ïàïêà
3356 (LowerCase(FItems
[a
][2]) = LowerCase(Chr(wParam
))) ) then
3359 FStartLine
:= Min(Max(FIndex
-1, 0), Length(FItems
)-FHeight
);
3360 if @FOnChangeEvent
<> nil then
3361 FOnChangeEvent(Self
);
3368 procedure TGUIFileListBox
.ScanDirs
;
3369 var i
, j
: Integer; path
: AnsiString; SR
: TSearchRec
; sm
, sc
: String;
3373 i
:= High(FBaseList
);
3376 path
:= e_CatPath(FBaseList
[i
], FSubPath
);
3379 if FindFirst(path
+ '/' + '*', faDirectory
, SR
) = 0 then
3382 if LongBool(SR
.Attr
and faDirectory
) then
3383 if (SR
.Name
<> '.') and ((FSubPath
<> '') or (SR
.Name
<> '..')) then
3384 if Self
.ItemExists(#1 + SR
.Name
) = false then
3385 Self
.AddItem(#1 + SR
.Name
)
3386 until FindNext(SR
) <> 0
3393 i
:= High(FBaseList
);
3396 path
:= e_CatPath(FBaseList
[i
], FSubPath
);
3402 j
:= length(sm
) + 1;
3403 sc
:= Copy(sm
, 1, j
- 1);
3405 if FindFirst(path
+ '/' + sc
, faAnyFile
, SR
) = 0 then
3408 if Self
.ItemExists(SR
.Name
) = false then
3410 until FindNext(SR
) <> 0
3417 for i
:= 0 to High(FItems
) do
3418 if FItems
[i
][1] = #1 then
3419 FItems
[i
][1] := #29;
3422 procedure TGUIFileListBox
.SetBase (dirs
: SSArray
; path
: String = '');
3429 function TGUIFileListBox
.SelectedItem (): String;
3433 if (FIndex
>= 0) and (FIndex
<= High(FItems
)) and (FItems
[FIndex
][1] <> '/') and (FItems
[FIndex
][1] <> '\') then
3435 s
:= e_CatPath(FSubPath
, FItems
[FIndex
]);
3436 if e_FindResource(FBaseList
, s
) = true then
3437 result
:= ExpandFileName(s
)
3439 e_LogWritefln('TGUIFileListBox.SelectedItem -> "%s"', [result
]);
3442 procedure TGUIFileListBox
.UpdateFileList();
3446 if (FIndex
= -1) or (FItems
= nil) or
3447 (FIndex
> High(FItems
)) or
3448 (FItems
[FIndex
][1] = '/') or
3449 (FItems
[FIndex
][1] = '\') then
3452 fn
:= FItems
[FIndex
];
3463 procedure TGUIMemo
.Clear
;
3469 constructor TGUIMemo
.Create(FontID
: DWORD
; Width
, Height
: Word);
3473 FFont
:= TFont
.Create(FontID
, TFontType
.Character
);
3478 FDrawScroll
:= True;
3481 procedure TGUIMemo
.Draw
;
3487 if FDrawBack
then DrawBox(FX
, FY
, FWidth
+1, FHeight
);
3489 DrawScroll(FX
+4+FWidth
*16, FY
+4, FHeight
, (FStartLine
> 0) and (FLines
<> nil),
3490 (FStartLine
+FHeight
-1 < High(FLines
)) and (FLines
<> nil));
3492 if FLines
<> nil then
3493 for a
:= FStartLine
to Min(High(FLines
), FStartLine
+FHeight
-1) do
3494 FFont
.Draw(FX
+4, FY
+4+(a
-FStartLine
)*16, FLines
[a
], FColor
.R
, FColor
.G
, FColor
.B
);
3497 function TGUIMemo
.GetHeight
: Integer;
3499 Result
:= 8+FHeight
*16;
3502 function TGUIMemo
.GetWidth
: Integer;
3504 Result
:= 8+(FWidth
+1)*16;
3507 procedure TGUIMemo
.OnMessage(var Msg
: TMessage
);
3509 if not FEnabled
then Exit
;
3513 if FLines
= nil then Exit
;
3519 IK_UP
, IK_LEFT
, IK_KPUP
, IK_KPLEFT
, VK_UP
, VK_LEFT
, JOY0_LEFT
, JOY1_LEFT
, JOY2_LEFT
, JOY3_LEFT
:
3520 if FStartLine
> 0 then
3522 IK_DOWN
, IK_RIGHT
, IK_KPDOWN
, IK_KPRIGHT
, VK_DOWN
, VK_RIGHT
, JOY0_RIGHT
, JOY1_RIGHT
, JOY2_RIGHT
, JOY3_RIGHT
:
3523 if FStartLine
< Length(FLines
)-FHeight
then
3525 IK_RETURN
, IK_KPRETURN
, VK_FIRE
, VK_OPEN
, JOY0_ATTACK
, JOY1_ATTACK
, JOY2_ATTACK
, JOY3_ATTACK
:
3528 if FActiveControl
<> Self
then
3534 if FDefControl
<> '' then SetActive(GetControl(FDefControl
))
3535 else SetActive(nil);
3541 procedure TGUIMemo
.SetText(Text: string);
3544 FLines
:= GetLines(Text, FFont
.ID
, FWidth
*16);
3549 procedure TGUIimage
.ClearImage();
3551 if FImageRes
= '' then Exit
;
3553 g_Texture_Delete(FImageRes
);
3557 constructor TGUIimage
.Create();
3564 destructor TGUIimage
.Destroy();
3569 procedure TGUIimage
.Draw();
3575 if FImageRes
= '' then
3577 if g_Texture_Get(FDefaultRes
, ID
) then e_Draw(ID
, FX
, FY
, 0, True, False);
3580 if g_Texture_Get(FImageRes
, ID
) then e_Draw(ID
, FX
, FY
, 0, True, False);
3583 procedure TGUIimage
.OnMessage(var Msg
: TMessage
);
3588 procedure TGUIimage
.SetImage(Res
: string);
3592 if g_Texture_CreateWADEx(Res
, Res
) then FImageRes
:= Res
;
3595 procedure TGUIimage
.Update();