Serious-Engine/Sources/Engine/Base/Shell_internal.h
Ryan C. Gordon 1a2ccb8f50 Merge github.com:Croteam-Official/Serious-Engine
Conflicts:
	Sources/Ecc/Parser.cpp
	Sources/Ecc/Scanner.cpp
	Sources/Engine/Base/Scanner.cpp
	Sources/Engine/GameAgent/GameAgent.cpp
	Sources/Engine/Graphics/Gfx_wrapper.h
	Sources/Engine/Network/Network.cpp
	Sources/Engine/Sound/SoundDecoder.h
	Sources/Engine/Templates/HashTableTemplate.cpp
	Sources/Engine/Terrain/Terrain.h
	Sources/EntitiesMP/ParticleCloudsHolder.es
	Sources/EntitiesMP/ParticleCloudsMarker.es
	Sources/SeriousSam/CDCheck.h
	Sources/SeriousSam/Menu.cpp
	Sources/SeriousSam/MenuGadgets.cpp
	Sources/SeriousSam/SeriousSam.cpp
	Sources/SeriousSam/SplashScreen.cpp
	Sources/SeriousSam/StdH.cpp
	Sources/SeriousSam/StdH.h
	Sources/Shaders/StdH.cpp
2016-04-02 23:56:12 -04:00

91 lines
2.6 KiB
C++

/* Copyright (c) 2002-2012 Croteam Ltd.
This program is free software; you can redistribute it and/or modify
it under the terms of version 2 of the GNU General Public License as published by
the Free Software Foundation
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, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
#ifndef SE_INCL_SHELL_INTERNAL_H
#define SE_INCL_SHELL_INTERNAL_H
#ifdef PRAGMA_ONCE
#pragma once
#endif
#include <Engine/Base/CTString.h>
// basic data type types
enum ShellTypeType {
STT_ILLEGAL ,
STT_POINTER ,
STT_FUNCTION ,
STT_ARRAY ,
STT_VOID ,
STT_INDEX ,
STT_FLOAT ,
STT_STRING ,
};
// data type structure
struct ShellType {
ShellType() :
st_sttType(STT_ILLEGAL),
st_ctArraySize(0),
st_istBaseType(0),
st_istFirstArgument(0),
st_istLastArgument(0),
st_istNextInArguments(0),
st_istPrevInArguments(0)
{
}
enum ShellTypeType st_sttType;
INDEX st_ctArraySize; // number of members if an array
INDEX st_istBaseType; // type pointed to by a pointer, or member of array
// or result of a function
INDEX st_istFirstArgument; // first argument in function
INDEX st_istLastArgument; // last argument in function
INDEX st_istNextInArguments; // next argument in function
INDEX st_istPrevInArguments; // previous argument in function
};
// symbol flags
#define SSF_CONSTANT (1L<<0) // the symbol cannot be changed
#define SSF_USER (1L<<1) // the symbol is visible to user (with ListSymbols() )
#define SSF_PERSISTENT (1L<<2) // the symbol is saved when exiting
#define SSF_EXTERNAL (1L<<3) // the symbol was declared externally (in a script)
// A symbol defined for using in shell.
class CShellSymbol {
public:
// implementation:
INDEX ss_istType; // type of the symbol
CTString ss_strName; // symbol name
void *ss_pvValue; // symbol value
BOOL (*ss_pPreFunc)(void *);
void (*ss_pPostFunc)(void *);
ULONG ss_ulFlags; // various flags
// Clear function.
void Clear(void);
// check if declared
BOOL IsDeclared(void);
// interface:
// get string for 'tab' completion in console
ENGINE_API CTString GetCompletionString(void) const;
};
#endif /* include-once check. */