summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 313f52c)
raw | patch | inline | side by side (parent: 313f52c)
author | Ketmar Dark <ketmar@ketmar.no-ip.org> | |
Tue, 26 Sep 2017 06:33:39 +0000 (09:33 +0300) | ||
committer | Ketmar Dark <ketmar@ketmar.no-ip.org> | |
Tue, 26 Sep 2017 06:37:11 +0000 (09:37 +0300) |
as i wrote the whole FlexUI code, and i may need to relicense it later,
i explicitly put myself as the only FlexUI author, to avoid possible
complications in the future.
please, don't add/fix code in FlexUI without talking to me first.
i explicitly put myself as the only FlexUI author, to avoid possible
complications in the future.
please, don't add/fix code in FlexUI without talking to me first.
diff --git a/src/game/g_holmes.pas b/src/game/g_holmes.pas
index 53b7c7343e62d83c48356e5f88cc634d35a94521..cf6a2bdbca084623e91ff9c2a06968f4746a6604 100644 (file)
--- a/src/game/g_holmes.pas
+++ b/src/game/g_holmes.pas
// ////////////////////////////////////////////////////////////////////////// //
var
- winHelp: THTopWindow = nil;
- winOptions: THTopWindow = nil;
- winLayers: THTopWindow = nil;
- winOutlines: THTopWindow = nil;
+ winHelp: TUITopWindow = nil;
+ winOptions: TUITopWindow = nil;
+ winLayers: TUITopWindow = nil;
+ winOutlines: TUITopWindow = nil;
procedure createHelpWindow (); forward;
procedure createOutlinesWindow (); forward;
-procedure toggleLayersWindowCB (me: THControl; checked: Integer);
+procedure toggleLayersWindowCB (me: TUIControl; checked: Integer);
begin
if showLayersWindow then
begin
end;
-procedure toggleOutlineWindowCB (me: THControl; checked: Integer);
+procedure toggleOutlineWindowCB (me: TUIControl; checked: Integer);
begin
if showOutlineWindow then
begin
procedure createHelpWindow ();
var
- llb: THCtlSimpleText;
+ llb: TUISimpleText;
slist: array of AnsiString = nil;
cmd: PHolmesCommand;
bind: THolmesBinding;
end;
end;
- llb := THCtlSimpleText.Create(0, 0);
+ llb := TUISimpleText.Create(0, 0);
for f := 0 to High(slist) do
begin
if (f > 0) then llb.appendItem('');
end;
end;
- winHelp := THTopWindow.Create('Holmes Help', 10, 10);
+ winHelp := TUITopWindow.Create('Holmes Help', 10, 10);
winHelp.escClose := true;
winHelp.appendChild(llb);
winHelp.centerInScreen();
end;
-procedure winLayersClosed (me: THControl; dummy: Integer); begin showLayersWindow := false; end;
-procedure winOutlinesClosed (me: THControl; dummy: Integer); begin showOutlineWindow := false; end;
+procedure winLayersClosed (me: TUIControl; dummy: Integer); begin showLayersWindow := false; end;
+procedure winOutlinesClosed (me: TUIControl; dummy: Integer); begin showOutlineWindow := false; end;
procedure createLayersWindow ();
var
- llb: THCtlCBListBox;
+ llb: TUICBListBox;
begin
- llb := THCtlCBListBox.Create(0, 0);
+ llb := TUICBListBox.Create(0, 0);
llb.appendItem('background', @g_rlayer_back);
llb.appendItem('steps', @g_rlayer_step);
llb.appendItem('walls', @g_rlayer_wall);
llb.appendItem('acid2', @g_rlayer_acid2);
llb.appendItem('water', @g_rlayer_water);
llb.appendItem('foreground', @g_rlayer_fore);
- winLayers := THTopWindow.Create('layers', 10, 10);
+ winLayers := TUITopWindow.Create('layers', 10, 10);
winLayers.escClose := true;
winLayers.appendChild(llb);
winLayers.closeCB := winLayersClosed;
procedure createOutlinesWindow ();
var
- llb: THCtlCBListBox;
+ llb: TUICBListBox;
begin
- llb := THCtlCBListBox.Create(0, 0);
+ llb := TUICBListBox.Create(0, 0);
llb.appendItem('background', @g_ol_rlayer_back);
llb.appendItem('steps', @g_ol_rlayer_step);
llb.appendItem('walls', @g_ol_rlayer_wall);
llb.appendItem('OPTIONS', nil);
llb.appendItem('fill walls', @g_ol_fill_walls);
llb.appendItem('contours', @g_ol_nice);
- winOutlines := THTopWindow.Create('outlines', 100, 10);
+ winOutlines := TUITopWindow.Create('outlines', 100, 10);
winOutlines.escClose := true;
winOutlines.appendChild(llb);
winOutlines.closeCB := winOutlinesClosed;
procedure createOptionsWindow ();
var
- llb: THCtlCBListBox;
+ llb: TUICBListBox;
begin
- llb := THCtlCBListBox.Create(0, 0);
+ llb := TUICBListBox.Create(0, 0);
llb.appendItem('map grid', @showGrid);
llb.appendItem('cursor position on map', @showMapCurPos);
llb.appendItem('monster info', @showMonsInfo);
llb.appendItem('WINDOWS', nil);
llb.appendItem('layers window', @showLayersWindow, toggleLayersWindowCB);
llb.appendItem('outline window', @showOutlineWindow, toggleOutlineWindowCB);
- winOptions := THTopWindow.Create('Holmes Options', 100, 100);
+ winOptions := TUITopWindow.Create('Holmes Options', 100, 100);
winOptions.escClose := true;
winOptions.appendChild(llb);
winOptions.centerInScreen();
diff --git a/src/gx/gh_flexlay.pas b/src/gx/gh_flexlay.pas
index 0f5d9286fe289a96a85d723736c78aff288b7a90..5f237f521de9df680b5b00e9f4e81aacc1817321 100644 (file)
--- a/src/gx/gh_flexlay.pas
+++ b/src/gx/gh_flexlay.pas
+(* coded by Ketmar // Invisible Vector <ketmar@ketmar.no-ip.org>
+ * Understanding is not required. Only obedience.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *)
{$INCLUDE ../shared/a_modes.inc}
unit gh_flexlay;
-(*
+(* WARNING! OUT OF DATE! will be fixed later.
+
first pass:
set all 'temp-flex' flags for controls to 'flex'
reset all 'laywrap' flags for controls
diff --git a/src/gx/gh_ui.pas b/src/gx/gh_ui.pas
index ee54d5c5550dcb6a8389dcdf212fb64b8911bbe2..c33a93fb6b3d72a67fbd38f604bcf5bf32522aef 100644 (file)
--- a/src/gx/gh_ui.pas
+++ b/src/gx/gh_ui.pas
-(* Copyright (C) DooM 2D:Forever Developers
+(* coded by Ketmar // Invisible Vector <ketmar@ketmar.no-ip.org>
+ * Understanding is not required. Only obedience.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*)
{$INCLUDE ../shared/a_modes.inc}
{$M+}
// ////////////////////////////////////////////////////////////////////////// //
type
- THControlClass = class of THControl;
+ TUIControlClass = class of TUIControl;
- THControl = class
+ TUIControl = class
public
- type TActionCB = procedure (me: THControl; uinfo: Integer);
+ type TActionCB = procedure (me: TUIControl; uinfo: Integer);
private
- mParent: THControl;
+ mParent: TUIControl;
mId: AnsiString;
mX, mY: Integer;
mWidth, mHeight: Integer;
mFrameWidth, mFrameHeight: Integer;
mEnabled: Boolean;
mCanFocus: Boolean;
- mChildren: array of THControl;
- mFocused: THControl; // valid only for top-level controls
- mGrab: THControl; // valid only for top-level controls
+ mChildren: array of TUIControl;
+ mFocused: TUIControl; // valid only for top-level controls
+ mGrab: TUIControl; // valid only for top-level controls
mEscClose: Boolean; // valid only for top-level controls
mEatKeys: Boolean;
mDrawShadow: Boolean;
function getFocused (): Boolean; inline;
procedure setFocused (v: Boolean); inline;
- function isMyChild (ctl: THControl): Boolean;
+ function isMyChild (ctl: TUIControl): Boolean;
- function findFirstFocus (): THControl;
- function findLastFocus (): THControl;
+ function findFirstFocus (): TUIControl;
+ function findLastFocus (): TUIControl;
- function findNextFocus (cur: THControl): THControl;
- function findPrevFocus (cur: THControl): THControl;
+ function findNextFocus (cur: TUIControl): TUIControl;
+ function findPrevFocus (cur: TUIControl): TUIControl;
procedure activated (); virtual;
procedure blurred (); virtual;
procedure draw (); virtual;
- function topLevel (): THControl; inline;
+ function topLevel (): TUIControl; inline;
// returns `true` if global coords are inside this control
function toLocal (var x, y: Integer): Boolean;
procedure toGlobal (lx, ly: Integer; out x, y: Integer); inline;
// x and y are global coords
- function controlAtXY (x, y: Integer): THControl;
+ function controlAtXY (x, y: Integer): TUIControl;
function mouseEvent (var ev: THMouseEvent): Boolean; virtual; // returns `true` if event was eaten
function keyEvent (var ev: THKeyEvent): Boolean; virtual; // returns `true` if event was eaten
- function prevSibling (): THControl;
- function nextSibling (): THControl;
- function firstChild (): THControl; inline;
- function lastChild (): THControl; inline;
+ function prevSibling (): TUIControl;
+ function nextSibling (): TUIControl;
+ function firstChild (): TUIControl; inline;
+ function lastChild (): TUIControl; inline;
- procedure appendChild (ctl: THControl); virtual;
+ procedure appendChild (ctl: TUIControl); virtual;
public
property id: AnsiString read mId;
property height: Integer read mHeight;
property width: Integer read mWidth;
property enabled: Boolean read getEnabled write setEnabled;
- property parent: THControl read mParent;
+ property parent: TUIControl read mParent;
property focused: Boolean read getFocused write setFocused;
property escClose: Boolean read mEscClose write mEscClose;
property eatKeys: Boolean read mEatKeys write mEatKeys;
end;
- THTopWindow = class(THControl)
+ TUITopWindow = class(TUIControl)
private
mTitle: AnsiString;
mDragging: Boolean;
end;
- THCtlSimpleText = class(THControl)
+ TUISimpleText = class(TUIControl)
private
type
PItem = ^TItem;
end;
- THCtlCBListBox = class(THControl)
+ TUICBListBox = class(TUIControl)
private
type
PItem = ^TItem;
end;
// ////////////////////////////////////////////////////////////////////// //
- THCtlBox = class(THControl)
+ TUIBox = class(TUIControl)
private
mHasFrame: Boolean;
mCaption: AnsiString;
function keyEvent (var ev: THKeyEvent): Boolean; override;
end;
- THCtlHBox = class(THCtlBox)
+ TUIHBox = class(TUIBox)
public
procedure AfterConstruction (); override; // so it will be correctly initialized when created from parser
end;
- THCtlVBox = class(THCtlBox)
+ TUIVBox = class(TUIBox)
public
procedure AfterConstruction (); override; // so it will be correctly initialized when created from parser
end;
// ////////////////////////////////////////////////////////////////////// //
- THCtlSpan = class(THControl)
+ TUISpan = class(TUIControl)
public
procedure AfterConstruction (); override; // so it will be correctly initialized when created from parser
end;
// ////////////////////////////////////////////////////////////////////// //
- THCtlLine = class(THControl)
+ TUILine = class(TUIControl)
public
function parseProperty (const prname: AnsiString; par: TTextParser): Boolean; override;
procedure drawControl (gx, gy: Integer); override;
end;
- THCtlHLine = class(THCtlLine)
+ TUIHLine = class(TUILine)
public
procedure AfterConstruction (); override; // so it will be correctly initialized when created from parser
end;
- THCtlVLine = class(THCtlLine)
+ TUIVLine = class(TUILine)
public
procedure AfterConstruction (); override; // so it will be correctly initialized when created from parser
end;
// ////////////////////////////////////////////////////////////////////// //
- THCtlTextLabel = class(THControl)
+ TUITextLabel = class(TUIControl)
private
mText: AnsiString;
mHAlign: Integer; // -1: left; 0: center; 1: right; default: left
// ////////////////////////////////////////////////////////////////////////// //
-procedure uiAddWindow (ctl: THControl);
-procedure uiRemoveWindow (ctl: THControl); // will free window if `mFreeOnClose` is `true`
-function uiVisibleWindow (ctl: THControl): Boolean;
+procedure uiAddWindow (ctl: TUIControl);
+procedure uiRemoveWindow (ctl: TUIControl); // will free window if `mFreeOnClose` is `true`
+function uiVisibleWindow (ctl: TUIControl): Boolean;
// ////////////////////////////////////////////////////////////////////////// //
// do layouting
-procedure uiLayoutCtl (ctl: THControl);
+procedure uiLayoutCtl (ctl: TUIControl);
// ////////////////////////////////////////////////////////////////////////// //
// ////////////////////////////////////////////////////////////////////////// //
var
knownCtlClasses: array of record
- klass: THControlClass;
+ klass: TUIControlClass;
name: AnsiString;
end = nil;
-procedure registerCtlClass (aklass: THControlClass; const aname: AnsiString);
+procedure registerCtlClass (aklass: TUIControlClass; const aname: AnsiString);
begin
assert(aklass <> nil);
assert(Length(aname) > 0);
end;
-function findCtlClass (const aname: AnsiString): THControlClass;
+function findCtlClass (const aname: AnsiString): TUIControlClass;
var
f: Integer;
begin
// ////////////////////////////////////////////////////////////////////////// //
type
- TFlexLayouter = specialize TFlexLayouterBase<THControl>;
+ TFlexLayouter = specialize TFlexLayouterBase<TUIControl>;
-procedure uiLayoutCtl (ctl: THControl);
+procedure uiLayoutCtl (ctl: TUIControl);
var
lay: TFlexLayouter;
begin
lay.layout();
//writeln('=== final ==='); lay.dump();
- if (ctl.mParent = nil) and (ctl is THTopWindow) and (THTopWindow(ctl).mDoCenter) then
+ if (ctl.mParent = nil) and (ctl is TUITopWindow) and (TUITopWindow(ctl).mDoCenter) then
begin
- THTopWindow(ctl).centerInScreen();
+ TUITopWindow(ctl).centerInScreen();
end;
finally
// ////////////////////////////////////////////////////////////////////////// //
var
- uiTopList: array of THControl = nil;
+ uiTopList: array of TUIControl = nil;
function uiMouseEvent (ev: THMouseEvent): Boolean;
var
f, c: Integer;
lx, ly: Integer;
- ctmp: THControl;
+ ctmp: TUIControl;
begin
ev.x := trunc(ev.x/gh_ui_scale);
ev.y := trunc(ev.y/gh_ui_scale);
procedure uiDraw ();
var
f: Integer;
- ctl: THControl;
+ ctl: TUIControl;
begin
glMatrixMode(GL_MODELVIEW);
glPushMatrix();
end;
-procedure uiAddWindow (ctl: THControl);
+procedure uiAddWindow (ctl: TUIControl);
var
f, c: Integer;
begin
if (ctl = nil) then exit;
ctl := ctl.topLevel;
- if not (ctl is THTopWindow) then exit; // alas
+ if not (ctl is TUITopWindow) then exit; // alas
for f := 0 to High(uiTopList) do
begin
if (uiTopList[f] = ctl) then
end;
-procedure uiRemoveWindow (ctl: THControl);
+procedure uiRemoveWindow (ctl: TUIControl);
var
f, c: Integer;
begin
if (ctl = nil) then exit;
ctl := ctl.topLevel;
- if not (ctl is THTopWindow) then exit; // alas
+ if not (ctl is TUITopWindow) then exit; // alas
for f := 0 to High(uiTopList) do
begin
if (uiTopList[f] = ctl) then
ctl.blurred();
for c := f+1 to High(uiTopList) do uiTopList[c-1] := uiTopList[c];
SetLength(uiTopList, Length(uiTopList)-1);
- if (ctl is THTopWindow) then
+ if (ctl is TUITopWindow) then
begin
try
- if assigned(THTopWindow(ctl).closeCB) then THTopWindow(ctl).closeCB(ctl, 0);
+ if assigned(TUITopWindow(ctl).closeCB) then TUITopWindow(ctl).closeCB(ctl, 0);
finally
- if (THTopWindow(ctl).mFreeOnClose) then FreeAndNil(ctl);
+ if (TUITopWindow(ctl).mFreeOnClose) then FreeAndNil(ctl);
end;
end;
exit;
end;
-function uiVisibleWindow (ctl: THControl): Boolean;
+function uiVisibleWindow (ctl: TUIControl): Boolean;
var
f: Integer;
begin
result := false;
if (ctl = nil) then exit;
ctl := ctl.topLevel;
- if not (ctl is THTopWindow) then exit; // alas
+ if not (ctl is TUITopWindow) then exit; // alas
for f := 0 to High(uiTopList) do
begin
if (uiTopList[f] = ctl) then begin result := true; exit; end;
// ////////////////////////////////////////////////////////////////////////// //
-constructor THControl.Create ();
+constructor TUIControl.Create ();
begin
mParent := nil;
mX := 0;
end;
-constructor THControl.Create (ax, ay, aw, ah: Integer);
+constructor TUIControl.Create (ax, ay, aw, ah: Integer);
begin
Create();
mX := ax;
end;
-destructor THControl.Destroy ();
+destructor TUIControl.Destroy ();
var
f, c: Integer;
begin
// ////////////////////////////////////////////////////////////////////////// //
-function THControl.getDefSize (): TLaySize; inline; begin result := mLayDefSize; end;
-function THControl.getMaxSize (): TLaySize; inline; begin result := mLayMaxSize; end;
-function THControl.getFlex (): Integer; inline; begin result := mFlex; end;
-function THControl.isHorizBox (): Boolean; inline; begin result := mHoriz; end;
-procedure THControl.setHorizBox (v: Boolean); inline; begin mHoriz := v; end;
-function THControl.canWrap (): Boolean; inline; begin result := mCanWrap; end;
-procedure THControl.setCanWrap (v: Boolean); inline; begin mCanWrap := v; end;
-function THControl.isLineStart (): Boolean; inline; begin result := mLineStart; end;
-procedure THControl.setLineStart (v: Boolean); inline; begin mLineStart := v; end;
-function THControl.getAlign (): Integer; inline; begin result := mAlign; end;
-procedure THControl.setAlign (v: Integer); inline; begin mAlign := v; end;
-function THControl.getExpand (): Boolean; inline; begin result := mExpand; end;
-procedure THControl.setExpand (v: Boolean); inline; begin mExpand := v; end;
-function THControl.getHGroup (): AnsiString; inline; begin result := mHGroup; end;
-procedure THControl.setHGroup (const v: AnsiString); inline; begin mHGroup := v; end;
-function THControl.getVGroup (): AnsiString; inline; begin result := mVGroup; end;
-procedure THControl.setVGroup (const v: AnsiString); inline; begin mVGroup := v; end;
-
-function THControl.getMargins (): TLayMargins; inline;
+function TUIControl.getDefSize (): TLaySize; inline; begin result := mLayDefSize; end;
+function TUIControl.getMaxSize (): TLaySize; inline; begin result := mLayMaxSize; end;
+function TUIControl.getFlex (): Integer; inline; begin result := mFlex; end;
+function TUIControl.isHorizBox (): Boolean; inline; begin result := mHoriz; end;
+procedure TUIControl.setHorizBox (v: Boolean); inline; begin mHoriz := v; end;
+function TUIControl.canWrap (): Boolean; inline; begin result := mCanWrap; end;
+procedure TUIControl.setCanWrap (v: Boolean); inline; begin mCanWrap := v; end;
+function TUIControl.isLineStart (): Boolean; inline; begin result := mLineStart; end;
+procedure TUIControl.setLineStart (v: Boolean); inline; begin mLineStart := v; end;
+function TUIControl.getAlign (): Integer; inline; begin result := mAlign; end;
+procedure TUIControl.setAlign (v: Integer); inline; begin mAlign := v; end;
+function TUIControl.getExpand (): Boolean; inline; begin result := mExpand; end;
+procedure TUIControl.setExpand (v: Boolean); inline; begin mExpand := v; end;
+function TUIControl.getHGroup (): AnsiString; inline; begin result := mHGroup; end;
+procedure TUIControl.setHGroup (const v: AnsiString); inline; begin mHGroup := v; end;
+function TUIControl.getVGroup (): AnsiString; inline; begin result := mVGroup; end;
+procedure TUIControl.setVGroup (const v: AnsiString); inline; begin mVGroup := v; end;
+
+function TUIControl.getMargins (): TLayMargins; inline;
begin
result := TLayMargins.Create(mFrameHeight, mFrameWidth, mFrameHeight, mFrameWidth);
end;
-procedure THControl.setActualSizePos (constref apos: TLayPos; constref asize: TLaySize); inline; begin
+procedure TUIControl.setActualSizePos (constref apos: TLayPos; constref asize: TLaySize); inline; begin
//writeln(self.className, '; pos=', apos.toString, '; size=', asize.toString);
if (mParent <> nil) then
begin
@@ -724,7 +725,7 @@ procedure THControl.setActualSizePos (constref apos: TLayPos; constref asize: TL
mHeight := asize.h;
end;
-procedure THControl.layPrepare ();
+procedure TUIControl.layPrepare ();
begin
mLayDefSize := mDefSize;
mLayMaxSize := mMaxSize;
// ////////////////////////////////////////////////////////////////////////// //
-function THControl.parsePos (par: TTextParser): TLayPos;
+function TUIControl.parsePos (par: TTextParser): TLayPos;
var
ech: AnsiChar = ')';
begin
par.expectDelim(ech);
end;
-function THControl.parseSize (par: TTextParser): TLaySize;
+function TUIControl.parseSize (par: TTextParser): TLaySize;
var
ech: AnsiChar = ')';
begin
par.expectDelim(ech);
end;
-function THControl.parseBool (par: TTextParser): Boolean;
+function TUIControl.parseBool (par: TTextParser): Boolean;
begin
result :=
- par.eatIdOrStr('true', false) or
- par.eatIdOrStr('yes', false) or
- par.eatIdOrStr('tan', false);
+ par.eatIdOrStrCI('true') or
+ par.eatIdOrStrCI('yes') or
+ par.eatIdOrStrCI('tan');
if not result then
begin
- if (not par.eatIdOrStr('false', false)) and (not par.eatIdOrStr('no', false)) and (not par.eatIdOrStr('ona', false)) then
+ if (not par.eatIdOrStrCI('false')) and (not par.eatIdOrStrCI('no')) and (not par.eatIdOrStrCI('ona')) then
begin
par.error('boolean value expected');
end;
end;
end;
-function THControl.parseAnyAlign (par: TTextParser): Integer;
+function TUIControl.parseAnyAlign (par: TTextParser): Integer;
begin
- if (par.eatIdOrStr('left', false)) or (par.eatIdOrStr('top', false)) then result := -1
- else if (par.eatIdOrStr('right', false)) or (par.eatIdOrStr('bottom', false)) then result := 1
- else if (par.eatIdOrStr('center', false)) then result := 0
+ if (par.eatIdOrStrCI('left')) or (par.eatIdOrStrCI('top')) then result := -1
+ else if (par.eatIdOrStrCI('right')) or (par.eatIdOrStrCI('bottom')) then result := 1
+ else if (par.eatIdOrStrCI('center')) then result := 0
else par.error('invalid align value');
end;
-function THControl.parseHAlign (par: TTextParser): Integer;
+function TUIControl.parseHAlign (par: TTextParser): Integer;
begin
- if (par.eatIdOrStr('left', false)) then result := -1
- else if (par.eatIdOrStr('right', false)) then result := 1
- else if (par.eatIdOrStr('center', false)) then result := 0
+ if (par.eatIdOrStrCI('left')) then result := -1
+ else if (par.eatIdOrStrCI('right')) then result := 1
+ else if (par.eatIdOrStrCI('center')) then result := 0
else par.error('invalid horizontal align value');
end;
-function THControl.parseVAlign (par: TTextParser): Integer;
+function TUIControl.parseVAlign (par: TTextParser): Integer;
begin
- if (par.eatIdOrStr('top', false)) then result := -1
- else if (par.eatIdOrStr('bottom', false)) then result := 1
- else if (par.eatIdOrStr('center', false)) then result := 0
+ if (par.eatIdOrStrCI('top')) then result := -1
+ else if (par.eatIdOrStrCI('bottom')) then result := 1
+ else if (par.eatIdOrStrCI('center')) then result := 0
else par.error('invalid vertical align value');
end;
-procedure THControl.parseTextAlign (par: TTextParser; var h, v: Integer);
+procedure TUIControl.parseTextAlign (par: TTextParser; var h, v: Integer);
var
wasH: Boolean = false;
wasV: Boolean = false;
begin
while true do
begin
- if (par.eatIdOrStr('left', false)) then
+ if (par.eatIdOrStrCI('left')) then
begin
if wasH then par.error('too many align directives');
wasH := true;
h := -1;
continue;
end;
- if (par.eatIdOrStr('right', false)) then
+ if (par.eatIdOrStrCI('right')) then
begin
if wasH then par.error('too many align directives');
wasH := true;
h := 1;
continue;
end;
- if (par.eatIdOrStr('hcenter', false)) then
+ if (par.eatIdOrStrCI('hcenter')) then
begin
if wasH then par.error('too many align directives');
wasH := true;
h := 0;
continue;
end;
- if (par.eatIdOrStr('top', false)) then
+ if (par.eatIdOrStrCI('top')) then
begin
if wasV then par.error('too many align directives');
wasV := true;
v := -1;
continue;
end;
- if (par.eatIdOrStr('bottom', false)) then
+ if (par.eatIdOrStrCI('bottom')) then
begin
if wasV then par.error('too many align directives');
wasV := true;
v := 1;
continue;
end;
- if (par.eatIdOrStr('vcenter', false)) then
+ if (par.eatIdOrStrCI('vcenter')) then
begin
if wasV then par.error('too many align directives');
wasV := true;
v := 0;
continue;
end;
- if (par.eatIdOrStr('center', false)) then
+ if (par.eatIdOrStrCI('center')) then
begin
if wasV or wasH then par.error('too many align directives');
wasV := true;
if not wasV and not wasH then par.error('invalid align value');
end;
-function THControl.parseOrientation (const prname: AnsiString; par: TTextParser): Boolean;
+function TUIControl.parseOrientation (const prname: AnsiString; par: TTextParser): Boolean;
begin
if (strEquCI1251(prname, 'orientation')) or (strEquCI1251(prname, 'orient')) then
begin
- if (par.eatIdOrStr('horizontal', false)) or (par.eatIdOrStr('horiz', false)) then mHoriz := true
- else if (par.eatIdOrStr('vertical', false)) or (par.eatIdOrStr('vert', false)) then mHoriz := false
+ if (par.eatIdOrStrCI('horizontal')) or (par.eatIdOrStrCI('horiz')) then mHoriz := true
+ else if (par.eatIdOrStrCI('vertical')) or (par.eatIdOrStrCI('vert')) then mHoriz := false
else par.error('`horizontal` or `vertical` expected');
result := true;
end
end;
// par should be on '{'; final '}' is eaten
-procedure THControl.parseProperties (par: TTextParser);
+procedure TUIControl.parseProperties (par: TTextParser);
var
pn: AnsiString;
begin
end;
// par should be on '{'
-procedure THControl.parseChildren (par: TTextParser);
+procedure TUIControl.parseChildren (par: TTextParser);
var
- cc: THControlClass;
- ctl: THControl;
+ cc: TUIControlClass;
+ ctl: TUIControl;
begin
par.expectDelim('{');
while (not par.eatDelim('}')) do
end;
-function THControl.parseProperty (const prname: AnsiString; par: TTextParser): Boolean;
+function TUIControl.parseProperty (const prname: AnsiString; par: TTextParser): Boolean;
begin
result := true;
if (strEquCI1251(prname, 'id')) then begin mId := par.expectStrOrId(true); exit; end; // allow empty strings
// ////////////////////////////////////////////////////////////////////////// //
-procedure THControl.activated ();
+procedure TUIControl.activated ();
begin
end;
-procedure THControl.blurred ();
+procedure TUIControl.blurred ();
begin
mGrab := nil;
end;
-function THControl.topLevel (): THControl; inline;
+function TUIControl.topLevel (): TUIControl; inline;
begin
result := self;
while (result.mParent <> nil) do result := result.mParent;
end;
-function THControl.getEnabled (): Boolean;
+function TUIControl.getEnabled (): Boolean;
var
- ctl: THControl;
+ ctl: TUIControl;
begin
result := false;
if (not mEnabled) or (mWidth < 1) or (mHeight < 1) then exit;
end;
-procedure THControl.setEnabled (v: Boolean); inline;
+procedure TUIControl.setEnabled (v: Boolean); inline;
begin
if (mEnabled = v) then exit;
mEnabled := v;
end;
-function THControl.getFocused (): Boolean; inline;
+function TUIControl.getFocused (): Boolean; inline;
begin
if (mParent = nil) then result := (Length(uiTopList) > 0) and (uiTopList[High(uiTopList)] = self) else result := (topLevel.mFocused = self);
end;
-procedure THControl.setFocused (v: Boolean); inline;
+procedure TUIControl.setFocused (v: Boolean); inline;
var
- tl: THControl;
+ tl: TUIControl;
begin
tl := topLevel;
if not v then
end;
-function THControl.isMyChild (ctl: THControl): Boolean;
+function TUIControl.isMyChild (ctl: TUIControl): Boolean;
begin
result := true;
while (ctl <> nil) do
// returns `true` if global coords are inside this control
-function THControl.toLocal (var x, y: Integer): Boolean;
+function TUIControl.toLocal (var x, y: Integer): Boolean;
var
- ctl: THControl;
+ ctl: TUIControl;
begin
ctl := self;
while (ctl <> nil) do
result := (x >= 0) and (y >= 0) and (x < mWidth) and (y < mHeight);
end;
-function THControl.toLocal (gx, gy: Integer; out x, y: Integer): Boolean; inline;
+function TUIControl.toLocal (gx, gy: Integer; out x, y: Integer): Boolean; inline;
begin
x := gx;
y := gy;
result := toLocal(x, y);
end;
-procedure THControl.toGlobal (var x, y: Integer);
+procedure TUIControl.toGlobal (var x, y: Integer);
var
- ctl: THControl;
+ ctl: TUIControl;
begin
ctl := self;
while (ctl <> nil) do
end;
end;
-procedure THControl.toGlobal (lx, ly: Integer; out x, y: Integer); inline;
+procedure TUIControl.toGlobal (lx, ly: Integer; out x, y: Integer); inline;
begin
x := lx;
y := ly;
// x and y are global coords
-function THControl.controlAtXY (x, y: Integer): THControl;
+function TUIControl.controlAtXY (x, y: Integer): TUIControl;
var
lx, ly: Integer;
f: Integer;
end;
-function THControl.prevSibling (): THControl;
+function TUIControl.prevSibling (): TUIControl;
var
f: Integer;
begin
result := nil;
end;
-function THControl.nextSibling (): THControl;
+function TUIControl.nextSibling (): TUIControl;
var
f: Integer;
begin
result := nil;
end;
-function THControl.firstChild (): THControl; inline;
+function TUIControl.firstChild (): TUIControl; inline;
begin
if (Length(mChildren) <> 0) then result := mChildren[0] else result := nil;
end;
-function THControl.lastChild (): THControl; inline;
+function TUIControl.lastChild (): TUIControl; inline;
begin
if (Length(mChildren) <> 0) then result := mChildren[High(mChildren)] else result := nil;
end;
-function THControl.findFirstFocus (): THControl;
+function TUIControl.findFirstFocus (): TUIControl;
var
f: Integer;
begin
end;
-function THControl.findLastFocus (): THControl;
+function TUIControl.findLastFocus (): TUIControl;
var
f: Integer;
begin
end;
-function THControl.findNextFocus (cur: THControl): THControl;
+function TUIControl.findNextFocus (cur: TUIControl): TUIControl;
begin
result := nil;
if enabled then
end;
-function THControl.findPrevFocus (cur: THControl): THControl;
+function TUIControl.findPrevFocus (cur: TUIControl): TUIControl;
begin
result := nil;
if enabled then
end;
-procedure THControl.appendChild (ctl: THControl);
+procedure TUIControl.appendChild (ctl: TUIControl);
begin
if (ctl = nil) then exit;
if (ctl.mParent <> nil) then exit;
// ////////////////////////////////////////////////////////////////////////// //
-procedure THControl.setScissorGLInternal (x, y, w, h: Integer);
+procedure TUIControl.setScissorGLInternal (x, y, w, h: Integer);
begin
if not scallowed then exit;
x := trunc(x*gh_ui_scale);
scis.combineRect(x, y, w, h);
end;
-procedure THControl.setScissor (lx, ly, lw, lh: Integer);
+procedure TUIControl.setScissor (lx, ly, lw, lh: Integer);
var
gx, gy: Integer;
//ox, oy, ow, oh: Integer;
setScissorGLInternal(gx, gy, lw, lh);
end;
-procedure THControl.resetScissor (fullArea: Boolean); inline;
+procedure TUIControl.resetScissor (fullArea: Boolean); inline;
begin
if not scallowed then exit;
if (fullArea) then
// ////////////////////////////////////////////////////////////////////////// //
-procedure THControl.draw ();
+procedure TUIControl.draw ();
var
f: Integer;
gx, gy: Integer;
end;
end;
-procedure THControl.drawControl (gx, gy: Integer);
+procedure TUIControl.drawControl (gx, gy: Integer);
begin
if (mParent = nil) then darkenRect(gx, gy, mWidth, mHeight, 64);
end;
-procedure THControl.drawControlPost (gx, gy: Integer);
+procedure TUIControl.drawControlPost (gx, gy: Integer);
begin
// shadow
if mDrawShadow and (mWidth > 0) and (mHeight > 0) then
// ////////////////////////////////////////////////////////////////////////// //
-function THControl.mouseEvent (var ev: THMouseEvent): Boolean;
+function TUIControl.mouseEvent (var ev: THMouseEvent): Boolean;
var
- ctl: THControl;
+ ctl: TUIControl;
begin
result := false;
if not mEnabled then exit;
end;
-function THControl.keyEvent (var ev: THKeyEvent): Boolean;
+function TUIControl.keyEvent (var ev: THKeyEvent): Boolean;
var
- ctl: THControl;
+ ctl: TUIControl;
begin
result := false;
if not mEnabled then exit;
// ////////////////////////////////////////////////////////////////////////// //
-constructor THTopWindow.Create (const atitle: AnsiString; ax, ay: Integer; aw: Integer=-1; ah: Integer=-1);
+constructor TUITopWindow.Create (const atitle: AnsiString; ax, ay: Integer; aw: Integer=-1; ah: Integer=-1);
begin
inherited Create(ax, ay, aw, ah);
mFrameWidth := 8;
end;
-function THTopWindow.parseProperty (const prname: AnsiString; par: TTextParser): Boolean;
+function TUITopWindow.parseProperty (const prname: AnsiString; par: TTextParser): Boolean;
begin
if (strEquCI1251(prname, 'title')) or (strEquCI1251(prname, 'caption')) then
begin
end;
if (strEquCI1251(prname, 'position')) then
begin
- if (par.eatIdOrStr('default', false)) then mDoCenter := false
- else if (par.eatIdOrStr('center', false)) then mDoCenter := true
+ if (par.eatIdOrStrCI('default')) then mDoCenter := false
+ else if (par.eatIdOrStrCI('center')) then mDoCenter := true
else par.error('`center` or `default` expected');
result := true;
exit;
end;
-procedure THTopWindow.centerInScreen ();
+procedure TUITopWindow.centerInScreen ();
begin
if (mWidth > 0) and (mHeight > 0) then
begin
end;
-procedure THTopWindow.drawControl (gx, gy: Integer);
+procedure TUITopWindow.drawControl (gx, gy: Integer);
begin
fillRect(gx, gy, mWidth, mHeight, TGxRGBA.Create(0, 0, 128));
end;
-procedure THTopWindow.drawControlPost (gx, gy: Integer);
+procedure TUITopWindow.drawControlPost (gx, gy: Integer);
const r = 255;
const g = 255;
const b = 255;
end;
-procedure THTopWindow.activated ();
+procedure TUITopWindow.activated ();
begin
if (mFocused = nil) or (mFocused = self) then
begin
end;
-procedure THTopWindow.blurred ();
+procedure TUITopWindow.blurred ();
begin
mDragging := false;
mWaitingClose := false;
end;
-function THTopWindow.keyEvent (var ev: THKeyEvent): Boolean;
+function TUITopWindow.keyEvent (var ev: THKeyEvent): Boolean;
begin
result := inherited keyEvent(ev);
if not getFocused then exit;
end;
-function THTopWindow.mouseEvent (var ev: THMouseEvent): Boolean;
+function TUITopWindow.mouseEvent (var ev: THMouseEvent): Boolean;
var
lx, ly: Integer;
begin
// ////////////////////////////////////////////////////////////////////////// //
-constructor THCtlSimpleText.Create (ax, ay: Integer);
+constructor TUISimpleText.Create (ax, ay: Integer);
begin
mItems := nil;
inherited Create(ax, ay, 4, 4);
end;
-destructor THCtlSimpleText.Destroy ();
+destructor TUISimpleText.Destroy ();
begin
mItems := nil;
inherited;
end;
-procedure THCtlSimpleText.appendItem (const atext: AnsiString; acentered: Boolean=false; ahline: Boolean=false);
+procedure TUISimpleText.appendItem (const atext: AnsiString; acentered: Boolean=false; ahline: Boolean=false);
var
it: PItem;
begin
end;
-procedure THCtlSimpleText.drawControl (gx, gy: Integer);
+procedure TUISimpleText.drawControl (gx, gy: Integer);
var
f, tx: Integer;
it: PItem;
end;
-function THCtlSimpleText.mouseEvent (var ev: THMouseEvent): Boolean;
+function TUISimpleText.mouseEvent (var ev: THMouseEvent): Boolean;
var
lx, ly: Integer;
begin
end;
-function THCtlSimpleText.keyEvent (var ev: THKeyEvent): Boolean;
+function TUISimpleText.keyEvent (var ev: THKeyEvent): Boolean;
begin
result := inherited keyEvent(ev);
end;
// ////////////////////////////////////////////////////////////////////////// //
-constructor THCtlCBListBox.Create (ax, ay: Integer);
+constructor TUICBListBox.Create (ax, ay: Integer);
begin
mItems := nil;
mCurIndex := -1;
end;
-destructor THCtlCBListBox.Destroy ();
+destructor TUICBListBox.Destroy ();
begin
mItems := nil;
inherited;
end;
-procedure THCtlCBListBox.appendItem (const atext: AnsiString; bv: PBoolean; aaction: TActionCB=nil);
+procedure TUICBListBox.appendItem (const atext: AnsiString; bv: PBoolean; aaction: TActionCB=nil);
var
it: PItem;
begin
end;
-procedure THCtlCBListBox.drawControl (gx, gy: Integer);
+procedure TUICBListBox.drawControl (gx, gy: Integer);
var
f, tx: Integer;
it: PItem;
end;
-function THCtlCBListBox.mouseEvent (var ev: THMouseEvent): Boolean;
+function TUICBListBox.mouseEvent (var ev: THMouseEvent): Boolean;
var
lx, ly: Integer;
it: PItem;
end;
-function THCtlCBListBox.keyEvent (var ev: THKeyEvent): Boolean;
+function TUICBListBox.keyEvent (var ev: THKeyEvent): Boolean;
var
it: PItem;
begin
// ////////////////////////////////////////////////////////////////////////// //
-constructor THCtlBox.Create (ahoriz: Boolean);
+constructor TUIBox.Create (ahoriz: Boolean);
begin
inherited Create();
mHoriz := ahoriz;
end;
-function THCtlBox.parseProperty (const prname: AnsiString; par: TTextParser): Boolean;
+function TUIBox.parseProperty (const prname: AnsiString; par: TTextParser): Boolean;
begin
if (parseOrientation(prname, par)) then begin result := true; exit; end;
if (strEquCI1251(prname, 'frame')) then
end;
-procedure THCtlBox.drawControl (gx, gy: Integer);
+procedure TUIBox.drawControl (gx, gy: Integer);
var
r, g, b: Integer;
tx: Integer;
end;
-function THCtlBox.mouseEvent (var ev: THMouseEvent): Boolean;
+function TUIBox.mouseEvent (var ev: THMouseEvent): Boolean;
var
lx, ly: Integer;
begin
//TODO: navigation with arrow keys, according to box orientation
-function THCtlBox.keyEvent (var ev: THKeyEvent): Boolean;
+function TUIBox.keyEvent (var ev: THKeyEvent): Boolean;
begin
result := inherited keyEvent(ev);
end;
// ////////////////////////////////////////////////////////////////////////// //
-procedure THCtlHBox.AfterConstruction ();
+procedure TUIHBox.AfterConstruction ();
begin
inherited AfterConstruction();
mHoriz := true;
// ////////////////////////////////////////////////////////////////////////// //
-procedure THCtlVBox.AfterConstruction ();
+procedure TUIVBox.AfterConstruction ();
begin
inherited AfterConstruction();
mHoriz := false;
// ////////////////////////////////////////////////////////////////////////// //
-procedure THCtlSpan.AfterConstruction ();
+procedure TUISpan.AfterConstruction ();
begin
inherited AfterConstruction();
mExpand := true;
end;
-function THCtlSpan.parseProperty (const prname: AnsiString; par: TTextParser): Boolean;
+function TUISpan.parseProperty (const prname: AnsiString; par: TTextParser): Boolean;
begin
if (parseOrientation(prname, par)) then begin result := true; exit; end;
result := inherited parseProperty(prname, par);
end;
-procedure THCtlSpan.drawControl (gx, gy: Integer);
+procedure TUISpan.drawControl (gx, gy: Integer);
begin
end;
// ////////////////////////////////////////////////////////////////////// //
-function THCtlLine.parseProperty (const prname: AnsiString; par: TTextParser): Boolean;
+function TUILine.parseProperty (const prname: AnsiString; par: TTextParser): Boolean;
begin
if (parseOrientation(prname, par)) then begin result := true; exit; end;
result := inherited parseProperty(prname, par);
end;
-procedure THCtlLine.drawControl (gx, gy: Integer);
+procedure TUILine.drawControl (gx, gy: Integer);
begin
if mHoriz then
begin
// ////////////////////////////////////////////////////////////////////////// //
-procedure THCtlHLine.AfterConstruction ();
+procedure TUIHLine.AfterConstruction ();
begin
mHoriz := true;
mExpand := true;
// ////////////////////////////////////////////////////////////////////////// //
-procedure THCtlVLine.AfterConstruction ();
+procedure TUIVLine.AfterConstruction ();
begin
mHoriz := false;
mExpand := true;
// ////////////////////////////////////////////////////////////////////////// //
-constructor THCtlTextLabel.Create (const atext: AnsiString);
+constructor TUITextLabel.Create (const atext: AnsiString);
begin
inherited Create();
mText := atext;
end;
-procedure THCtlTextLabel.AfterConstruction ();
+procedure TUITextLabel.AfterConstruction ();
begin
inherited AfterConstruction();
mHAlign := -1;
end;
-function THCtlTextLabel.parseProperty (const prname: AnsiString; par: TTextParser): Boolean;
+function TUITextLabel.parseProperty (const prname: AnsiString; par: TTextParser): Boolean;
begin
if (strEquCI1251(prname, 'title')) or (strEquCI1251(prname, 'caption')) then
begin
end;
-procedure THCtlTextLabel.drawControl (gx, gy: Integer);
+procedure TUITextLabel.drawControl (gx, gy: Integer);
var
xpos, ypos: Integer;
begin
end;
-function THCtlTextLabel.mouseEvent (var ev: THMouseEvent): Boolean;
+function TUITextLabel.mouseEvent (var ev: THMouseEvent): Boolean;
var
lx, ly: Integer;
begin
end;
-function THCtlTextLabel.keyEvent (var ev: THKeyEvent): Boolean;
+function TUITextLabel.keyEvent (var ev: THKeyEvent): Boolean;
begin
result := inherited keyEvent(ev);
end;
initialization
- registerCtlClass(THCtlHBox, 'hbox');
- registerCtlClass(THCtlVBox, 'vbox');
- registerCtlClass(THCtlSpan, 'span');
- registerCtlClass(THCtlHLine, 'hline');
- registerCtlClass(THCtlVLine, 'vline');
- registerCtlClass(THCtlTextLabel, 'label');
+ registerCtlClass(TUIHBox, 'hbox');
+ registerCtlClass(TUIVBox, 'vbox');
+ registerCtlClass(TUISpan, 'span');
+ registerCtlClass(TUIHLine, 'hline');
+ registerCtlClass(TUIVLine, 'vline');
+ registerCtlClass(TUITextLabel, 'label');
end.
index 15118ae259162d25cf0da9cd9994fa95c47ed247..034321ae5f99f062fa36e10339351ab39dc961bf 100644 (file)
--- a/src/gx/gh_ui_common.pas
+++ b/src/gx/gh_ui_common.pas
-(* Copyright (C) DooM 2D:Forever Developers
+(* coded by Ketmar // Invisible Vector <ketmar@ketmar.no-ip.org>
+ * Understanding is not required. Only obedience.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*)
{$INCLUDE ../shared/a_modes.inc}
unit gh_ui_common;
diff --git a/src/gx/glgfx.pas b/src/gx/glgfx.pas
index 84bbe534e6109242155034c68c8be8cd46123569..fc3cc77fbb870e7cf143fa070db28cd74ad0ee3d 100644 (file)
--- a/src/gx/glgfx.pas
+++ b/src/gx/glgfx.pas
-(* Copyright (C) DooM 2D:Forever Developers
+(* coded by Ketmar // Invisible Vector <ketmar@ketmar.no-ip.org>
+ * Understanding is not required. Only obedience.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*)
{$INCLUDE ../shared/a_modes.inc}
unit glgfx;
diff --git a/src/shared/xparser.pas b/src/shared/xparser.pas
index a3e39cef4d5ac642c2aab3ee8abfa33f253b707c..4e45fc6849cf1e6861e94c87664996b1153e6b6d 100644 (file)
--- a/src/shared/xparser.pas
+++ b/src/shared/xparser.pas
-(* Copyright (C) DooM 2D:Forever Developers
+(* coded by Ketmar // Invisible Vector <ketmar@ketmar.no-ip.org>
+ * Understanding is not required. Only obedience.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
*)
{$INCLUDE a_modes.inc}
{.$DEFINE XPARSER_DEBUG}