1
0
Fork 0
forked from fte/fteqw
fteqw/quakec/menusys/cs/entrypoints.qc
Spoike 9e8bb446f4 implemented pm_stepdown.
attempt to implement 'simple csqc' api.
handle qw+nq gunshot+blood+lightning differently - they do actually have different particle spawn patterns (qw is a single point, so spreads wider).
fix q3ui logo mesh thing. work around q3ui player meshes on d3d.
split video and renderer latching, so vid_reload delatches more stuff.
fix autosprite+autosprite2 in 6 different renderers...
added fog volumes to d3d9 renderer.
using matrix hacks instead of glDepthRange, this should give more consistent behaviour, especially now that we have r_viewmodel_fov.
small cleanup for gl shadowmaps to make the interface more consistent with other renderers.
added patchDef2 parsing to fte's .map loader, doesn't actually use it though.
some fixes for q3's shaders, including to try to get overbright working better.
updated customskin api to give more control.
first attempt at a packager system for fteqccgui. probably useless, but whatever.
menusys changes to try to support QSS's csqc.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5200 fc73d0e0-1445-4013-8a0c-d673dee63da5
2018-01-22 19:18:04 +00:00

113 lines
No EOL
3.1 KiB
C++

mitem_desktop thedesktop;
void(mitem_desktop desktop) M_Pop =
{
mitem it = desktop.item_kactivechild;
if (it)
it.item_remove();
};
void(mitem_desktop desktop) M_ToggleMenu =
{
mitem it = desktop.item_kactivechild;
if (it)
it.item_remove();
else
M_Main(desktop);
};
float(string str) CSQC_ConsoleCommand =
{
local float args;
args = tokenize(str);
switch(argv(0))
{
#define cmd(n,fnc,inc) case n: fnc(thedesktop); return TRUE;
concommandslist
#undef cmd
default:
return FALSE;
}
return TRUE;
};
float(float isnew) updateplayer =
{
self.drawmask = 1;
if (self.entnum == player_localentnum)
self.renderflags = RF_EXTERNALMODEL;
else
self.renderflags = 0;
return TRUE;
};
//void(float apilevel, string enginename, float engineversion) CSQC_Init =
//{
// deltalisten("progs/player.mdl", updateplayer, 0);
//};
var float autocvar_dp_workarounds_allow = TRUE;
var float autocvar_dp_workarounds_force = FALSE;
void(float apilevel, string enginename, float engineversion) CSQC_Init =
{
dprint(sprintf("CSQC: Running on \"%s\" ver=%g, api=%g\n", enginename, engineversion, apilevel));
if (!apilevel)
dp_workarounds = autocvar_dp_workarounds_allow;
if (autocvar_dp_workarounds_force)
dp_workarounds = TRUE;
if (dp_workarounds)
print("DP-specific workarounds are enabled\n");
//make sure the engine knows what commands we want to handle
#define cmd(n,fnc,inc) registercommand(n);
concommandslist
#undef cmd
// Hud_Init(); //make sure the hud images are precached properly, so there's no stalls.
};
float (float event, float parama, float paramb, float devid) CSQC_InputEvent =
{
if (!thedesktop)
return event!=IE_KEYUP;
if (items_keypress(thedesktop, event, parama, paramb, devid))
return TRUE;
return FALSE;
};
/*The desktop object will not normally draw anything, but you can get the desktop object to do the drawing by overriding its 'drawgame' method.
The primary advantage of doing the drawing this way is that the menu system can properly handle mouse positions in 3d space with multiple views. The menu system also handles splitscreen efficiently. Note that the menu system will handle clearing the scene and adding entities before this function is called.
You could instead draw the game then draw the menusystem over the top, if you're more comfortable with that.
*/
class mydesktop : mitem_desktop
{
virtual void(float seat, vector minpos, vector size) drawgame =
{
setproperty(VF_DRAWENGINESBAR, TRUE);
/*
entity playerent = findfloat(world, entnum, player_localentnum);
if (playerent)
{
vector vorg = playerent.origin - playerent.gravitydir*getstat(STAT_VIEWHEIGHT);
vector vang = playerent.v_angle;
setproperty(VF_ORIGIN, vorg);
setproperty(VF_ANGLES, vang);
makevectors(vang);
SetListener(vorg, v_forward, v_right, v_up, playerent.waterlevel==3);
}
*/
renderscene();
};
};
void(float width, float height, float do2d) CSQC_UpdateView =
{
if (!thedesktop)
thedesktop = spawn(mydesktop);
items_draw(thedesktop);
};
//void(float width, float height, float do2d) CSQC_UpdateView_Loading = CSQC_UpdateView;