From 15155278231f4ac3c793d344272bfc32626c5341 Mon Sep 17 00:00:00 2001 From: DeaDDooMER Date: Thu, 29 Dec 2022 19:17:12 +0300 Subject: [PATCH] flexui: remove direct dependency on opengl --- src/flexui/fui_ctls.pas | 5 +- src/flexui/fui_gfx.pas | 164 ++++++++++ src/flexui/sdlcarcass.pas | 1 - src/game/Doom2DF.lpr | 14 +- .../renders/opengl/r_fui_gfx_gl.pas} | 302 ++++++++---------- .../renders/opengl/r_fui_gfx_gl_cursor.inc} | 0 src/game/renders/opengl/r_holmes.pas | 7 +- 7 files changed, 304 insertions(+), 189 deletions(-) create mode 100644 src/flexui/fui_gfx.pas rename src/{flexui/fui_gfx_gl.pas => game/renders/opengl/r_fui_gfx_gl.pas} (85%) rename src/{flexui/fui_gfx_gl_cursor.inc => game/renders/opengl/r_fui_gfx_gl_cursor.inc} (100%) diff --git a/src/flexui/fui_ctls.pas b/src/flexui/fui_ctls.pas index 12f710c..2605e44 100644 --- a/src/flexui/fui_ctls.pas +++ b/src/flexui/fui_ctls.pas @@ -21,10 +21,9 @@ interface uses SysUtils, Classes, - SDL2, sdlcarcass, fui_common, fui_events, fui_style, - fui_gfx_gl, + fui_gfx, xparser; @@ -601,7 +600,7 @@ end; procedure uiInitialize (); begin if (uiContext <> nil) then raise Exception.Create('FlexUI already initialized'); - uiContext := TGxContext.Create(); + uiContext := gxCreateContext(); end; diff --git a/src/flexui/fui_gfx.pas b/src/flexui/fui_gfx.pas new file mode 100644 index 0000000..dce01e5 --- /dev/null +++ b/src/flexui/fui_gfx.pas @@ -0,0 +1,164 @@ +(* coded by Ketmar // Invisible Vector + * 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, version 3 of the License ONLY. + * + * 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 . + *) +{$INCLUDE ../shared/a_modes.inc} +{$DEFINE FUI_TEXT_ICONS} +unit fui_gfx; + +interface + + uses fui_common; + + type + TGxContext = class abstract + public + type + TMarkIcon = (Checkbox, Radiobox); + TWinIcon = (Close); + + public + procedure line (x1, y1, x2, y2: Integer); virtual; abstract; + procedure hline (x, y, len: Integer); virtual; abstract; + procedure vline (x, y, len: Integer); virtual; abstract; + procedure rect (x, y, w, h: Integer); virtual; abstract; + procedure fillRect (x, y, w, h: Integer); virtual; abstract; + procedure darkenRect (x, y, w, h: Integer; a: Integer); virtual; abstract; + + function charWidth (const ch: AnsiChar): Integer; virtual; abstract; + function charHeight (const ch: AnsiChar): Integer; virtual; abstract; + function textWidth (const s: AnsiString): Integer; virtual; abstract; + function textHeight (const s: AnsiString): Integer; virtual; abstract; + function drawChar (x, y: Integer; const ch: AnsiChar): Integer; virtual; abstract; // returns char width + function drawText (x, y: Integer; const s: AnsiString): Integer; virtual; abstract; // returns text width + + function iconMarkWidth (ic: TMarkIcon): Integer; virtual; abstract; + function iconMarkHeight (ic: TMarkIcon): Integer; virtual; abstract; + procedure drawIconMark (ic: TMarkIcon; x, y: Integer; marked: Boolean); virtual; abstract; + + function iconWinWidth (ic: TWinIcon): Integer; virtual; abstract; + function iconWinHeight (ic: TWinIcon): Integer; virtual; abstract; + procedure drawIconWin (ic: TWinIcon; x, y: Integer; pressed: Boolean); virtual; abstract; + + procedure resetClip (); virtual; abstract; + +// function setOffset (constref aofs: TGxOfs): TGxOfs; virtual; abstract; // returns previous offset +// function setClip (constref aclip: TGxRect): TGxRect; virtual; abstract; // returns previous clip + + function combineClip (constref aclip: TGxRect): TGxRect; virtual; abstract; // returns previous clip + + // vertical scrollbar + procedure drawVSBar (x, y, wdt, hgt: Integer; cur, min, max: Integer; constref clrfull, clrempty: TGxRGBA); virtual; abstract; + // horizontal scrollbar + procedure drawHSBar (x, y, wdt, hgt: Integer; cur, min, max: Integer; constref clrfull, clrempty: TGxRGBA); virtual; abstract; + + class function sbarFilled (wh: Integer; cur, min, max: Integer): Integer; + class function sbarPos (cxy: Integer; xy, wh: Integer; min, max: Integer): Integer; + + protected + function getColor (): TGxRGBA; virtual; abstract; + procedure setColor (const clr: TGxRGBA); virtual; abstract; + + function getFont (): AnsiString; virtual; abstract; + procedure setFont (const aname: AnsiString); virtual; abstract; + + function getClipRect (): TGxRect; virtual; abstract; + procedure setClipRect (const aclip: TGxRect); virtual; abstract; + + procedure onActivate (); virtual; abstract; + procedure onDeactivate (); virtual; abstract; + + private + mActive: Boolean; + + public + property active: Boolean read mActive; + property color: TGxRGBA read getColor write setColor; + property font: AnsiString read getFont write setFont; + property clip: TGxRect read getClipRect write setClipRect; // clipping is unaffected by offset + end; + + // set active context; `ctx` can be `nil` + function gxCreateContext (): TGxContext; + procedure gxSetContext (ctx: TGxContext; ascale: Single=1.0); + procedure gxGfxLoadFont (const fontname: AnsiString; const fontFile: AnsiString; proportional: Boolean=false); + + var (* installed by implementation *) + gxPreSetContextCallback: procedure = nil; + gxCreateContextCallback: function (): TGxContext = nil; + gxFuiGfxLoadFontCallback: procedure (const fontname: AnsiString; const fontFile: AnsiString; proportional: Boolean) = nil; + +implementation + + uses SysUtils; + + var + curCtx: TGxContext = nil; + + function gxCreateContext (): TGxContext; + begin + result := nil; + if Assigned(gxCreateContextCallback) then + result := gxCreateContextCallback(); + end; + + procedure gxSetContext (ctx: TGxContext; ascale: Single=1.0); + begin + if Assigned(gxPreSetContextCallback) then + gxPreSetContextCallback; + if curCtx <> nil then + begin + curCtx.onDeactivate(); + curCtx.mActive := false; + end; + curCtx := ctx; + if ctx <> nil then + begin + ctx.mActive := true; + ctx.onActivate(); + end; + end; + + procedure gxGfxLoadFont (const fontname: AnsiString; const fontFile: AnsiString; proportional: Boolean=false); + begin + if Assigned(gxFuiGfxLoadFontCallback) then + gxFuiGfxLoadFontCallback(fontname, fontFile, proportional) + else + raise Exception.Create('FlexUI: hook not installed: font named '''+fontname+''' can not be loaded') + end; + + class function TGxContext.sbarFilled (wh: Integer; cur, min, max: Integer): Integer; + begin + if (wh < 1) then result := 0 + else if (min > max) then result := 0 + else if (min = max) then result := wh + else + begin + if (cur < min) then cur := min else if (cur > max) then cur := max; + result := wh*(cur-min) div (max-min); + end; + end; + + class function TGxContext.sbarPos (cxy: Integer; xy, wh: Integer; min, max: Integer): Integer; + begin + if (wh < 1) then begin result := 0; exit; end; + if (min > max) then begin result := 0; exit; end; + if (min = max) then begin result := max; exit; end; + if (cxy < xy) then begin result := min; exit; end; + if (cxy >= xy+wh) then begin result := max; exit; end; + result := min+((max-min)*(cxy-xy) div wh); + assert((result >= min) and (result <= max)); + end; + +end. diff --git a/src/flexui/sdlcarcass.pas b/src/flexui/sdlcarcass.pas index 247229b..edbf2d1 100644 --- a/src/flexui/sdlcarcass.pas +++ b/src/flexui/sdlcarcass.pas @@ -68,7 +68,6 @@ implementation uses SysUtils, Classes, - {$INCLUDE ../nogl/noGLuses.inc} {$IF DEFINED(LINUX) OR DEFINED(ANDROID)} unixtype, linux {$ELSEIF DEFINED(WINDOWS)} diff --git a/src/game/Doom2DF.lpr b/src/game/Doom2DF.lpr index 3282cab..f6d74ef 100644 --- a/src/game/Doom2DF.lpr +++ b/src/game/Doom2DF.lpr @@ -208,6 +208,7 @@ uses r_gui in 'renders/opengl/r_gui.pas', r_loadscreen in 'renders/opengl/r_loadscreen.pas', {$IFDEF ENABLE_HOLMES} + r_fui_gfx_gl in 'renders/opengl/r_fui_gfx_gl.pas', r_holmes in 'renders/opengl/r_holmes.pas', {$ENDIF} {$ELSE} @@ -241,8 +242,7 @@ uses fui_wadread in '../flexui/fui_wadread.pas', fui_common in '../flexui/fui_common.pas', -// fui_gfx in '../flexui/fui_gfx.pas', - fui_gfx_gl in '../flexui/fui_gfx_gl.pas', + fui_gfx in '../flexui/fui_gfx.pas', fui_events in '../flexui/fui_events.pas', fui_style in '../flexui/fui_style.pas', fui_flexlay in '../flexui/fui_flexlay.pas', @@ -898,11 +898,11 @@ end; if not fuiAddWad('./data/flexui.wad') then fuiAddWad('./flexui.wad'); end; try - fuiGfxLoadFont('win8', 'flexui/fonts/win8.fuifont'); - fuiGfxLoadFont('win14', 'flexui/fonts/win14.fuifont'); - fuiGfxLoadFont('win16', 'flexui/fonts/win16.fuifont'); - fuiGfxLoadFont('dos8', 'flexui/fonts/dos8.fuifont'); - fuiGfxLoadFont('msx6', 'flexui/fonts/msx6.fuifont'); + gxGfxLoadFont('win8', 'flexui/fonts/win8.fuifont'); + gxGfxLoadFont('win14', 'flexui/fonts/win14.fuifont'); + gxGfxLoadFont('win16', 'flexui/fonts/win16.fuifont'); + gxGfxLoadFont('dos8', 'flexui/fonts/dos8.fuifont'); + gxGfxLoadFont('msx6', 'flexui/fonts/msx6.fuifont'); except on e: Exception do begin writeln('ERROR loading FlexUI fonts'); diff --git a/src/flexui/fui_gfx_gl.pas b/src/game/renders/opengl/r_fui_gfx_gl.pas similarity index 85% rename from src/flexui/fui_gfx_gl.pas rename to src/game/renders/opengl/r_fui_gfx_gl.pas index e543fc0..f64171a 100644 --- a/src/flexui/fui_gfx_gl.pas +++ b/src/game/renders/opengl/r_fui_gfx_gl.pas @@ -15,15 +15,13 @@ *) {$INCLUDE ../shared/a_modes.inc} {$DEFINE FUI_TEXT_ICONS} -unit fui_gfx_gl; +unit r_fui_gfx_gl; interface uses - {$INCLUDE ../nogl/noGLuses.inc} SysUtils, Classes, - SDL2, - sdlcarcass, + fui_gfx, fui_common, fui_events; @@ -45,21 +43,8 @@ type property baseLine: Integer read mBaseLine; end; - TGxContext = class - public - type - TMarkIcon = ( - Checkbox, - Radiobox - ); - - type - TWinIcon = ( - Close - ); - + TGxContext = class (fui_gfx.TGxContext) protected - mActive: Boolean; mColor: TGxRGBA; mFont: TGxFont; // for active contexts @@ -69,59 +54,60 @@ type mClipOfs: TGxOfs; protected - function getFont (): AnsiString; - procedure setFont (const aname: AnsiString); + procedure realizeClip (); // setup scissoring + procedure setClipOfs (const aofs: TGxOfs); // !!! - procedure onActivate (); - procedure onDeactivate (); + public + function setOffset (constref aofs: TGxOfs): TGxOfs; // returns previous offset + function setClip (constref aclip: TGxRect): TGxRect; // returns previous clip + + protected + function getFont (): AnsiString; override; + procedure setFont (const aname: AnsiString); override; - procedure setColor (const clr: TGxRGBA); + procedure onActivate (); override; + procedure onDeactivate (); override; - procedure realizeClip (); // setup scissoring + function getColor (): TGxRGBA; override; + procedure setColor (const clr: TGxRGBA); override; - procedure setClipOfs (const aofs: TGxOfs); - procedure setClipRect (const aclip: TGxRect); + function getClipRect (): TGxRect; override; + procedure setClipRect (const aclip: TGxRect); override; public constructor Create (); destructor Destroy (); override; - procedure line (x1, y1, x2, y2: Integer); - procedure hline (x, y, len: Integer); - procedure vline (x, y, len: Integer); - procedure rect (x, y, w, h: Integer); - procedure fillRect (x, y, w, h: Integer); - procedure darkenRect (x, y, w, h: Integer; a: Integer); + procedure line (x1, y1, x2, y2: Integer); override; + procedure hline (x, y, len: Integer); override; + procedure vline (x, y, len: Integer); override; + procedure rect (x, y, w, h: Integer); override; + procedure fillRect (x, y, w, h: Integer); override; + procedure darkenRect (x, y, w, h: Integer; a: Integer); override; - function charWidth (const ch: AnsiChar): Integer; - function charHeight (const ch: AnsiChar): Integer; - function textWidth (const s: AnsiString): Integer; - function textHeight (const s: AnsiString): Integer; - function drawChar (x, y: Integer; const ch: AnsiChar): Integer; // returns char width - function drawText (x, y: Integer; const s: AnsiString): Integer; // returns text width + function charWidth (const ch: AnsiChar): Integer; override; + function charHeight (const ch: AnsiChar): Integer; override; + function textWidth (const s: AnsiString): Integer; override; + function textHeight (const s: AnsiString): Integer; override; + function drawChar (x, y: Integer; const ch: AnsiChar): Integer; override; // returns char width + function drawText (x, y: Integer; const s: AnsiString): Integer; override; // returns text width - function iconMarkWidth (ic: TMarkIcon): Integer; - function iconMarkHeight (ic: TMarkIcon): Integer; - procedure drawIconMark (ic: TMarkIcon; x, y: Integer; marked: Boolean); + function iconMarkWidth (ic: TMarkIcon): Integer; override; + function iconMarkHeight (ic: TMarkIcon): Integer; override; + procedure drawIconMark (ic: TMarkIcon; x, y: Integer; marked: Boolean); override; - function iconWinWidth (ic: TWinIcon): Integer; - function iconWinHeight (ic: TWinIcon): Integer; - procedure drawIconWin (ic: TWinIcon; x, y: Integer; pressed: Boolean); + function iconWinWidth (ic: TWinIcon): Integer; override; + function iconWinHeight (ic: TWinIcon): Integer; override; + procedure drawIconWin (ic: TWinIcon; x, y: Integer; pressed: Boolean); override; - procedure resetClip (); + procedure resetClip (); override; - function setOffset (constref aofs: TGxOfs): TGxOfs; // returns previous offset - function setClip (constref aclip: TGxRect): TGxRect; // returns previous clip - - function combineClip (constref aclip: TGxRect): TGxRect; // returns previous clip + function combineClip (constref aclip: TGxRect): TGxRect; override; // returns previous clip // vertical scrollbar - procedure drawVSBar (x, y, wdt, hgt: Integer; cur, min, max: Integer; constref clrfull, clrempty: TGxRGBA); + procedure drawVSBar (x, y, wdt, hgt: Integer; cur, min, max: Integer; constref clrfull, clrempty: TGxRGBA); override; // horizontal scrollbar - procedure drawHSBar (x, y, wdt, hgt: Integer; cur, min, max: Integer; constref clrfull, clrempty: TGxRGBA); - - class function sbarFilled (wh: Integer; cur, min, max: Integer): Integer; - class function sbarPos (cxy: Integer; xy, wh: Integer; min, max: Integer): Integer; + procedure drawHSBar (x, y, wdt, hgt: Integer; cur, min, max: Integer; constref clrfull, clrempty: TGxRGBA); override; public //HACK! procedure glSetScale (ascale: Single); @@ -129,29 +115,22 @@ type procedure glSetScaleTrans (ascale, ax, ay: Single); public - property active: Boolean read mActive; property color: TGxRGBA read mColor write setColor; - property font: AnsiString read getFont write setFont; property offset: TGxOfs read mClipOfs write setClipOfs; property clip: TGxRect read mClipRect write setClipRect; // clipping is unaffected by offset end; -// set active context; `ctx` can be `nil` -procedure gxSetContext (ctx: TGxContext; ascale: Single=1.0); -procedure gxSetContextNoMatrix (ctx: TGxContext); - - // setup 2D OpenGL mode; will be called automatically in `glInit()` -procedure oglSetup2D (winWidth, winHeight: Integer; upsideDown: Boolean=false); -procedure oglSetup2DState (); // don't modify viewports and matrices +//procedure oglSetup2D (winWidth, winHeight: Integer; upsideDown: Boolean=false); +//procedure oglSetup2DState (); // don't modify viewports and matrices -procedure oglDrawCursor (); -procedure oglDrawCursorAt (msX, msY: Integer); +//procedure oglDrawCursor (); +//procedure oglDrawCursorAt (msX, msY: Integer); -procedure fuiGfxLoadFont (const fontname: AnsiString; const fontFile: AnsiString; proportional: Boolean=false); -procedure fuiGfxLoadFont (const fontname: AnsiString; st: TStream; proportional: Boolean=false); +//procedure fuiGfxLoadFont (const fontname: AnsiString; const fontFile: AnsiString; proportional: Boolean=false); +//procedure fuiGfxLoadFont (const fontname: AnsiString; st: TStream; proportional: Boolean=false); // ////////////////////////////////////////////////////////////////////////// // @@ -162,6 +141,8 @@ var implementation uses + {$INCLUDE ../nogl/noGLuses.inc} + sdlcarcass, fui_wadread, utils; @@ -253,52 +234,17 @@ end; var - curCtx: TGxContext = nil; savedGLState: TSavedGLState; - -// ////////////////////////////////////////////////////////////////////////// // -// set active context; `ctx` can be `nil` -procedure gxSetContextInternal (ctx: TGxContext; ascale: Single; domatrix: Boolean); -var - mt: packed array [0..15] of GLfloat; +procedure gxGLPreSetContextCallback; begin if (savedGLState.saved) then savedGLState.restore(); - - if (curCtx <> nil) then - begin - curCtx.onDeactivate(); - curCtx.mActive := false; - end; - - curCtx := ctx; - if (ctx <> nil) then - begin - ctx.mActive := true; - savedGLState.save(); - if (domatrix) then - begin - oglSetup2D(fuiScrWdt, fuiScrHgt); - glScalef(ascale, ascale, 1.0); - ctx.mScaled := (ascale <> 1.0); - ctx.mScale := ascale; - end - else - begin - // assume uniform scale - glGetFloatv(GL_MODELVIEW_MATRIX, @mt[0]); - ctx.mScaled := (mt[0] <> 1.0) or (mt[1*4+1] <> 1.0); - ctx.mScale := mt[0]; - oglSetup2DState(); - end; - ctx.onActivate(); - end; end; - -procedure gxSetContext (ctx: TGxContext; ascale: Single=1.0); begin gxSetContextInternal(ctx, ascale, true); end; -procedure gxSetContextNoMatrix (ctx: TGxContext); begin gxSetContextInternal(ctx, 1, false); end; - +function gxGLCreateContextCallback (): fui_gfx.TGxContext; +begin + result := TGxContext.Create(); +end; // ////////////////////////////////////////////////////////////////////////// // type @@ -694,28 +640,6 @@ end; } -procedure fuiGfxLoadFont (const fontname: AnsiString; const fontFile: AnsiString; proportional: Boolean=false); -var - st: TStream; -begin - if (Length(fontname) = 0) then raise Exception.Create('FlexUI: cannot load nameless font '''+fontFile+''''); - st := fuiOpenFile(fontFile); - if (st = nil) then raise Exception.Create('FlexUI: cannot load font '''+fontFile+''''); - try - fuiGfxLoadFont(fontname, st, proportional); - except on e: Exception do - begin - writeln('FlexUI font loadin error: ', e.message); - FreeAndNil(st); - raise Exception.Create('FlexUI: cannot load font '''+fontFile+''''); - end; - else - raise; - end; - FreeAndNil(st); -end; - - procedure fuiGfxLoadFont (const fontname: AnsiString; st: TStream; proportional: Boolean=false); var fnt: TGxBmpFont = nil; @@ -743,6 +667,28 @@ begin end; +procedure fuiGfxLoadFont (const fontname: AnsiString; const fontFile: AnsiString; proportional: Boolean=false); +var + st: TStream; +begin + if (Length(fontname) = 0) then raise Exception.Create('FlexUI: cannot load nameless font '''+fontFile+''''); + st := fuiOpenFile(fontFile); + if (st = nil) then raise Exception.Create('FlexUI: cannot load font '''+fontFile+''''); + try + fuiGfxLoadFont(fontname, st, proportional); + except on e: Exception do + begin + writeln('FlexUI font loadin error: ', e.message); + FreeAndNil(st); + raise Exception.Create('FlexUI: cannot load font '''+fontFile+''''); + end; + else + raise; + end; + FreeAndNil(st); +end; + + procedure oglInitFonts (); var f: Integer; @@ -810,7 +756,7 @@ end; // ////////////////////////////////////////////////////////////////////////// // -{$INCLUDE fui_gfx_gl_cursor.inc} +{$INCLUDE r_fui_gfx_gl_cursor.inc} procedure oglDrawCursor (); begin oglDrawCursorAt(fuiMouseX, fuiMouseY); end; @@ -818,7 +764,7 @@ procedure oglDrawCursor (); begin oglDrawCursorAt(fuiMouseX, fuiMouseY); end; // ////////////////////////////////////////////////////////////////////////// // constructor TGxContext.Create (); begin - mActive := false; + inherited; mColor := TGxRGBA.Create(255, 255, 255); mFont := getFontByName('default'); mScaled := false; @@ -830,7 +776,7 @@ end; destructor TGxContext.Destroy (); begin - if (mActive) then gxSetContext(nil); + if self.active then gxSetContext(nil); inherited; end; @@ -847,7 +793,26 @@ end; procedure TGxContext.onActivate (); +//ascale: Single; domatrix: Boolean; +var + mt: packed array [0..15] of GLfloat; begin + savedGLState.save(); +// if (domatrix) then +// begin +// oglSetup2D(fuiScrWdt, fuiScrHgt); +// glScalef(ascale, ascale, 1.0); +// self.mScaled := (ascale <> 1.0); +// self.mScale := ascale; +// end +// else + begin + // assume uniform scale + glGetFloatv(GL_MODELVIEW_MATRIX, @mt[0]); + self.mScaled := (mt[0] <> 1.0) or (mt[1*4+1] <> 1.0); + self.mScale := mt[0]; + oglSetup2DState(); + end; setupGLColor(mColor); realizeClip(); end; @@ -857,10 +822,15 @@ begin end; +function TGxContext.getColor (): TGxRGBA; +begin + result := mColor; +end; + procedure TGxContext.setColor (const clr: TGxRGBA); begin mColor := clr; - if (mActive) then setupGLColor(mColor); + if self.active then setupGLColor(mColor); end; @@ -868,7 +838,7 @@ procedure TGxContext.realizeClip (); var sx, sy, sw, sh: Integer; begin - if (not mActive) then exit; // just in case + if not self.active then exit; // just in case if (mClipRect.w <= 0) or (mClipRect.h <= 0) then begin glEnable(GL_SCISSOR_TEST); @@ -912,7 +882,7 @@ end; procedure TGxContext.resetClip (); begin mClipRect := TGxRect.Create(0, 0, 8192, 8192); - if (mActive) then realizeClip(); + if self.active then realizeClip(); end; @@ -922,10 +892,15 @@ begin end; +function TGxContext.getClipRect (): TGxRect; +begin + result := mClipRect; +end; + procedure TGxContext.setClipRect (const aclip: TGxRect); begin mClipRect := aclip; - if (mActive) then realizeClip(); + if self.active then realizeClip(); end; @@ -940,7 +915,7 @@ function TGxContext.setClip (constref aclip: TGxRect): TGxRect; begin result := mClipRect; mClipRect := aclip; - if (mActive) then realizeClip(); + if self.active then realizeClip(); end; @@ -948,13 +923,13 @@ function TGxContext.combineClip (constref aclip: TGxRect): TGxRect; begin result := mClipRect; mClipRect.intersect(aclip); - if (mActive) then realizeClip(); + if self.active then realizeClip(); end; procedure TGxContext.line (x1, y1, x2, y2: Integer); begin - if (not mActive) or (mClipRect.w < 1) or (mClipRect.h < 1) or (mColor.a = 0) then exit; + if (not self.active) or (mClipRect.w < 1) or (mClipRect.h < 1) or (mColor.a = 0) then exit; if (not mScaled) then begin @@ -988,7 +963,7 @@ end; procedure TGxContext.hline (x, y, len: Integer); begin - if (not mActive) or (mClipRect.w < 1) or (mClipRect.h < 1) or (mColor.a = 0) then exit; + if (not self.active) or (mClipRect.w < 1) or (mClipRect.h < 1) or (mColor.a = 0) then exit; if (len < 1) then exit; if (not mScaled) then begin @@ -1019,7 +994,7 @@ end; procedure TGxContext.vline (x, y, len: Integer); begin - if (not mActive) or (mClipRect.w < 1) or (mClipRect.h < 1) or (mColor.a = 0) then exit; + if (not self.active) or (mClipRect.w < 1) or (mClipRect.h < 1) or (mColor.a = 0) then exit; if (len < 1) then exit; if (not mScaled) then begin @@ -1050,7 +1025,7 @@ end; procedure TGxContext.rect (x, y, w, h: Integer); begin - if (not mActive) or (mClipRect.w < 1) or (mClipRect.h < 1) or (mColor.a = 0) then exit; + if (not self.active) or (mClipRect.w < 1) or (mClipRect.h < 1) or (mColor.a = 0) then exit; if (w < 0) or (h < 0) then exit; if (w = 1) and (h = 1) then begin @@ -1084,7 +1059,7 @@ end; procedure TGxContext.fillRect (x, y, w, h: Integer); begin - if (not mActive) or (mClipRect.w < 1) or (mClipRect.h < 1) or (mColor.a = 0) then exit; + if (not self.active) or (mClipRect.w < 1) or (mClipRect.h < 1) or (mColor.a = 0) then exit; if (w < 0) or (h < 0) then exit; glBegin(GL_QUADS); glVertex2f(x, y); @@ -1097,7 +1072,7 @@ end; procedure TGxContext.darkenRect (x, y, w, h: Integer; a: Integer); begin - if (not mActive) or (mClipRect.w < 1) or (mClipRect.h < 1) or (a >= 255) then exit; + if (not self.active) or (mClipRect.w < 1) or (mClipRect.h < 1) or (a >= 255) then exit; if (w < 0) or (h < 0) then exit; if (a < 0) then a := 0; glEnable(GL_BLEND); @@ -1138,14 +1113,14 @@ end; function TGxContext.drawChar (x, y: Integer; const ch: AnsiChar): Integer; // returns char width begin result := mFont.charWidth(ch); - if (not mActive) or (mClipRect.w < 1) or (mClipRect.h < 1) or (mColor.a = 0) then exit; + if (not self.active) or (mClipRect.w < 1) or (mClipRect.h < 1) or (mColor.a = 0) then exit; TGxBmpFont(mFont).drawCharInternal(x, y, ch); end; function TGxContext.drawText (x, y: Integer; const s: AnsiString): Integer; // returns text width begin result := mFont.textWidth(s); - if (not mActive) or (mClipRect.w < 1) or (mClipRect.h < 1) or (mColor.a = 0) or (Length(s) = 0) then exit; + if (not self.active) or (mClipRect.w < 1) or (mClipRect.h < 1) or (mColor.a = 0) or (Length(s) = 0) then exit; TGxBmpFont(mFont).drawTextInternal(x, y, s); end; @@ -1184,7 +1159,7 @@ var f: Integer; {$ENDIF} begin - if (not mActive) or (mClipRect.w < 1) or (mClipRect.h < 1) or (mColor.a = 0) then exit; + if (not self.active) or (mClipRect.w < 1) or (mClipRect.h < 1) or (mColor.a = 0) then exit; {$IFDEF FUI_TEXT_ICONS} case ic of TMarkIcon.Checkbox: xstr := '[x]'; @@ -1275,7 +1250,7 @@ var f: Integer; {$ENDIF} begin - if (not mActive) or (mClipRect.w < 1) or (mClipRect.h < 1) or (mColor.a = 0) then exit; + if (not self.active) or (mClipRect.w < 1) or (mClipRect.h < 1) or (mColor.a = 0) then exit; {$IFDEF FUI_TEXT_ICONS} case ic of TWinIcon.Close: if (pressed) then xstr := '[#]' else xstr := '[x]'; @@ -1348,33 +1323,6 @@ begin end; -class function TGxContext.sbarFilled (wh: Integer; cur, min, max: Integer): Integer; -begin - if (wh < 1) then result := 0 - else if (min > max) then result := 0 - else if (min = max) then result := wh - else - begin - if (cur < min) then cur := min else if (cur > max) then cur := max; - result := wh*(cur-min) div (max-min); - end; -end; - - -class function TGxContext.sbarPos (cxy: Integer; xy, wh: Integer; min, max: Integer): Integer; -begin - if (wh < 1) then begin result := 0; exit; end; - if (min > max) then begin result := 0; exit; end; - if (min = max) then begin result := max; exit; end; - if (cxy < xy) then begin result := min; exit; end; - if (cxy >= xy+wh) then begin result := max; exit; end; - result := min+((max-min)*(cxy-xy) div wh); - assert((result >= min) and (result <= max)); -end; - - - - // ////////////////////////////////////////////////////////////////////////// // (* procedure oglRestoreMode (doClear: Boolean); @@ -1446,4 +1394,8 @@ initialization postrenderFrameCB := onPostRender; oglInitCB := onInit; oglDeinitCB := onDeinit; + + gxPreSetContextCallback := gxGLPreSetContextCallback; + gxCreateContextCallback := gxGLCreateContextCallback; + gxFuiGfxLoadFontCallback := fuiGfxLoadFont; end. diff --git a/src/flexui/fui_gfx_gl_cursor.inc b/src/game/renders/opengl/r_fui_gfx_gl_cursor.inc similarity index 100% rename from src/flexui/fui_gfx_gl_cursor.inc rename to src/game/renders/opengl/r_fui_gfx_gl_cursor.inc diff --git a/src/game/renders/opengl/r_holmes.pas b/src/game/renders/opengl/r_holmes.pas index e04fbc4..1a370d5 100644 --- a/src/game/renders/opengl/r_holmes.pas +++ b/src/game/renders/opengl/r_holmes.pas @@ -42,7 +42,8 @@ uses xprofiler, sdlcarcass, fui_common, fui_ctls, - fui_gfx_gl, + fui_gfx, + r_fui_gfx_gl, {$IFDEF ENABLE_GFX} g_gfx, {$ENDIF} @@ -54,7 +55,7 @@ uses MAPDEF, g_options; var - hlmContext: TGxContext = nil; + hlmContext: r_fui_gfx_gl.TGxContext = nil; vpx, vpy: Integer; vpw, vph: Integer; laserSet: Boolean = false; @@ -803,7 +804,7 @@ var begin if (gPlayer1 = nil) then exit; - if (hlmContext = nil) then hlmContext := TGxContext.Create(); + if (hlmContext = nil) then hlmContext := r_fui_gfx_gl.TGxContext.Create(); gxSetContext(hlmContext); try -- 2.29.2