2012-11-26 18:58:24 +00:00
|
|
|
/*
|
|
|
|
===========================================================================
|
|
|
|
|
|
|
|
Doom 3 BFG Edition GPL Source Code
|
2012-11-28 15:47:07 +00:00
|
|
|
Copyright (C) 1993-2012 id Software LLC, a ZeniMax Media company.
|
2012-11-26 18:58:24 +00:00
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
This file is part of the Doom 3 BFG Edition GPL Source Code ("Doom 3 BFG Edition Source Code").
|
2012-11-26 18:58:24 +00:00
|
|
|
|
|
|
|
Doom 3 BFG Edition Source Code 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.
|
|
|
|
|
|
|
|
Doom 3 BFG Edition Source Code 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 Doom 3 BFG Edition Source Code. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
In addition, the Doom 3 BFG Edition Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 BFG Edition Source Code. If not, please request a copy in writing from id Software at the address below.
|
|
|
|
|
|
|
|
If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
|
|
|
|
|
|
|
|
===========================================================================
|
|
|
|
*/
|
|
|
|
#ifndef __GUISCRIPT_H
|
|
|
|
#define __GUISCRIPT_H
|
|
|
|
|
|
|
|
#include "Window.h"
|
|
|
|
#include "Winvar.h"
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
struct idGSWinVar
|
|
|
|
{
|
|
|
|
idGSWinVar()
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
var = NULL;
|
|
|
|
own = false;
|
|
|
|
}
|
|
|
|
idWinVar* var;
|
|
|
|
bool own;
|
|
|
|
};
|
|
|
|
|
|
|
|
class idGuiScriptList;
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
class idGuiScript
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
friend class idGuiScriptList;
|
|
|
|
friend class idWindow;
|
2012-11-28 15:47:07 +00:00
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
public:
|
|
|
|
idGuiScript();
|
|
|
|
~idGuiScript();
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
bool Parse( idTokenParser* src );
|
|
|
|
void Execute( idWindow* win )
|
|
|
|
{
|
|
|
|
if( handler )
|
|
|
|
{
|
|
|
|
handler( win, &parms );
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
void FixupParms( idWindow* win );
|
|
|
|
size_t Size()
|
|
|
|
{
|
|
|
|
int sz = sizeof( *this );
|
|
|
|
for( int i = 0; i < parms.Num(); i++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
sz += parms[i].var->Size();
|
|
|
|
}
|
|
|
|
return sz;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
|
|
|
|
void WriteToSaveGame( idFile* savefile );
|
|
|
|
void ReadFromSaveGame( idFile* savefile );
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
protected:
|
|
|
|
int conditionReg;
|
2012-11-28 15:47:07 +00:00
|
|
|
idGuiScriptList* ifList;
|
|
|
|
idGuiScriptList* elseList;
|
2012-11-26 18:58:24 +00:00
|
|
|
idList<idGSWinVar, TAG_OLD_UI> parms;
|
2012-11-28 15:47:07 +00:00
|
|
|
void ( *handler )( idWindow* window, idList<idGSWinVar, TAG_OLD_UI>* src );
|
|
|
|
|
2012-11-26 18:58:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-11-28 15:47:07 +00:00
|
|
|
class idGuiScriptList
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
idList<idGuiScript*, TAG_OLD_UI> list;
|
|
|
|
public:
|
2012-11-28 15:47:07 +00:00
|
|
|
idGuiScriptList()
|
|
|
|
{
|
|
|
|
list.SetGranularity( 4 );
|
|
|
|
};
|
|
|
|
~idGuiScriptList()
|
|
|
|
{
|
|
|
|
list.DeleteContents( true );
|
|
|
|
};
|
|
|
|
void Execute( idWindow* win );
|
|
|
|
void Append( idGuiScript* gs )
|
|
|
|
{
|
|
|
|
list.Append( gs );
|
2012-11-26 18:58:24 +00:00
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
size_t Size()
|
|
|
|
{
|
|
|
|
int sz = sizeof( *this );
|
|
|
|
for( int i = 0; i < list.Num(); i++ )
|
|
|
|
{
|
2012-11-26 18:58:24 +00:00
|
|
|
sz += list[i]->Size();
|
|
|
|
}
|
|
|
|
return sz;
|
|
|
|
}
|
2012-11-28 15:47:07 +00:00
|
|
|
void FixupParms( idWindow* win );
|
|
|
|
void ReadFromDemoFile( class idDemoFile* f ) {};
|
|
|
|
void WriteToDemoFile( class idDemoFile* f ) {};
|
|
|
|
|
|
|
|
void WriteToSaveGame( idFile* savefile );
|
|
|
|
void ReadFromSaveGame( idFile* savefile );
|
2012-11-26 18:58:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GUISCRIPT_H
|