2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
//**************************************************************************
|
|
|
|
//**
|
|
|
|
//** sc_man.c : Heretic 2 : Raven Software, Corp.
|
|
|
|
//**
|
|
|
|
//** $RCSfile: sc_man.c,v $
|
|
|
|
//** $Revision: 1.3 $
|
|
|
|
//** $Date: 96/01/06 03:23:43 $
|
|
|
|
//** $Author: bgokey $
|
|
|
|
//**
|
|
|
|
//**************************************************************************
|
|
|
|
|
|
|
|
// HEADER FILES ------------------------------------------------------------
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "doomtype.h"
|
|
|
|
#include "i_system.h"
|
|
|
|
#include "sc_man.h"
|
|
|
|
#include "w_wad.h"
|
|
|
|
#include "cmdlib.h"
|
|
|
|
#include "m_misc.h"
|
2006-06-20 20:30:39 +00:00
|
|
|
#include "templates.h"
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// MACROS ------------------------------------------------------------------
|
|
|
|
|
|
|
|
#define MAX_STRING_SIZE 4096
|
|
|
|
#define ASCII_COMMENT (';')
|
|
|
|
#define CPP_COMMENT ('/')
|
|
|
|
#define C_COMMENT ('*')
|
|
|
|
#define ASCII_QUOTE ('"')
|
|
|
|
#define LUMP_SCRIPT 1
|
|
|
|
#define FILE_ZONE_SCRIPT 2
|
|
|
|
|
|
|
|
#define NORMAL_STOPCHARS "{}|="
|
|
|
|
#define CMODE_STOPCHARS "`~!@#$%^&*(){}[]/=\?+|;:<>,."
|
|
|
|
#define CMODE_STOPCHARS_NODECIMAL "`~!@#$%^&*(){}[]/=\?+|;:<>,"
|
|
|
|
|
|
|
|
// TYPES -------------------------------------------------------------------
|
|
|
|
|
|
|
|
// EXTERNAL FUNCTION PROTOTYPES --------------------------------------------
|
|
|
|
|
|
|
|
// PUBLIC FUNCTION PROTOTYPES ----------------------------------------------
|
|
|
|
|
|
|
|
// PRIVATE FUNCTION PROTOTYPES ---------------------------------------------
|
|
|
|
|
|
|
|
static void SC_PrepareScript (void);
|
2006-11-29 04:51:16 +00:00
|
|
|
static bool SC_ScanString (bool tokens);
|
2006-02-24 04:48:15 +00:00
|
|
|
static void CheckOpen (void);
|
|
|
|
|
|
|
|
// EXTERNAL DATA DECLARATIONS ----------------------------------------------
|
|
|
|
|
|
|
|
// PUBLIC DATA DEFINITIONS -------------------------------------------------
|
|
|
|
|
2006-11-29 04:51:16 +00:00
|
|
|
int sc_TokenType;
|
2006-02-24 04:48:15 +00:00
|
|
|
char *sc_String;
|
2006-11-29 04:51:16 +00:00
|
|
|
unsigned int sc_StringLen;
|
2006-02-24 04:48:15 +00:00
|
|
|
int sc_Number;
|
2006-11-29 04:51:16 +00:00
|
|
|
double sc_Float;
|
|
|
|
FName sc_Name;
|
2006-02-24 04:48:15 +00:00
|
|
|
int sc_Line;
|
2006-09-14 00:02:31 +00:00
|
|
|
bool sc_End;
|
|
|
|
bool sc_Crossed;
|
|
|
|
bool sc_FileScripts = false;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// PRIVATE DATA DEFINITIONS ------------------------------------------------
|
|
|
|
|
2006-05-03 22:45:01 +00:00
|
|
|
static FString ScriptName;
|
2006-02-24 04:48:15 +00:00
|
|
|
static char *ScriptBuffer;
|
|
|
|
static char *ScriptPtr;
|
|
|
|
static char *ScriptEndPtr;
|
|
|
|
static char StringBuffer[MAX_STRING_SIZE];
|
|
|
|
static bool ScriptOpen = false;
|
|
|
|
static int ScriptSize;
|
|
|
|
static bool AlreadyGot = false;
|
2007-10-05 08:04:38 +00:00
|
|
|
static int AlreadyGotLine;
|
2006-11-29 04:51:16 +00:00
|
|
|
static bool LastGotToken = false;
|
|
|
|
static char *LastGotPtr;
|
2007-10-05 08:04:38 +00:00
|
|
|
static int LastGotLine;
|
2006-02-24 04:48:15 +00:00
|
|
|
static bool FreeScript = false;
|
|
|
|
static char *SavedScriptPtr;
|
|
|
|
static int SavedScriptLine;
|
|
|
|
static bool CMode;
|
2006-06-21 23:22:17 +00:00
|
|
|
static bool Escape = true;
|
|
|
|
static bool AtTermed;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// CODE --------------------------------------------------------------------
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_Open
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void SC_Open (const char *name)
|
|
|
|
{
|
2006-04-30 21:49:18 +00:00
|
|
|
int lump = Wads.CheckNumForFullName(name);
|
|
|
|
if (lump==-1) lump = Wads.GetNumForName(name);
|
|
|
|
SC_OpenLumpNum(lump, name);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_OpenFile
|
|
|
|
//
|
|
|
|
// Loads a script (from a file). Uses the new/delete memory allocator for
|
|
|
|
// memory allocation and de-allocation.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void SC_OpenFile (const char *name)
|
|
|
|
{
|
2006-09-14 00:02:31 +00:00
|
|
|
BYTE *filebuf;
|
2006-05-26 04:38:22 +00:00
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
SC_Close ();
|
2006-05-26 04:38:22 +00:00
|
|
|
ScriptSize = M_ReadFile (name, &filebuf);
|
2006-11-29 04:51:16 +00:00
|
|
|
ScriptBuffer = new char[ScriptSize + 1];
|
|
|
|
memcpy (ScriptBuffer, filebuf, ScriptSize);
|
|
|
|
ScriptBuffer[ScriptSize++] = '\n';
|
|
|
|
delete[] filebuf;
|
2006-04-30 21:49:18 +00:00
|
|
|
ScriptName = name; // This is used for error messages so the full file name is preferable
|
2006-02-24 04:48:15 +00:00
|
|
|
FreeScript = true;
|
|
|
|
SC_PrepareScript ();
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_OpenMem
|
|
|
|
//
|
|
|
|
// Prepares a script that is already in memory for parsing. The caller is
|
2006-11-29 04:51:16 +00:00
|
|
|
// responsible for freeing it, if needed. You MUST ensure that the script
|
|
|
|
// ends with the newline character '\n'.
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void SC_OpenMem (const char *name, char *buffer, int size)
|
|
|
|
{
|
|
|
|
SC_Close ();
|
|
|
|
ScriptSize = size;
|
|
|
|
ScriptBuffer = buffer;
|
2006-04-30 21:49:18 +00:00
|
|
|
ScriptName = name;
|
2006-02-24 04:48:15 +00:00
|
|
|
FreeScript = false;
|
|
|
|
SC_PrepareScript ();
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_OpenLumpNum
|
|
|
|
//
|
|
|
|
// Loads a script (from the WAD files).
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void SC_OpenLumpNum (int lump, const char *name)
|
|
|
|
{
|
|
|
|
SC_Close ();
|
|
|
|
ScriptSize = Wads.LumpLength (lump);
|
2006-11-29 04:51:16 +00:00
|
|
|
ScriptBuffer = new char[ScriptSize + 1];
|
2006-02-24 04:48:15 +00:00
|
|
|
Wads.ReadLump (lump, ScriptBuffer);
|
2006-11-29 04:51:16 +00:00
|
|
|
ScriptBuffer[ScriptSize++] = '\n';
|
2006-04-30 21:49:18 +00:00
|
|
|
ScriptName = name;
|
2006-02-24 04:48:15 +00:00
|
|
|
FreeScript = true;
|
|
|
|
SC_PrepareScript ();
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_PrepareScript
|
|
|
|
//
|
|
|
|
// Prepares a script for parsing.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
static void SC_PrepareScript (void)
|
|
|
|
{
|
|
|
|
ScriptPtr = ScriptBuffer;
|
|
|
|
ScriptEndPtr = ScriptPtr + ScriptSize;
|
|
|
|
sc_Line = 1;
|
|
|
|
sc_End = false;
|
|
|
|
ScriptOpen = true;
|
|
|
|
sc_String = StringBuffer;
|
|
|
|
AlreadyGot = false;
|
2006-11-29 04:51:16 +00:00
|
|
|
LastGotToken = false;
|
|
|
|
LastGotPtr = NULL;
|
2007-10-05 08:04:38 +00:00
|
|
|
LastGotLine = 1;
|
2006-02-24 04:48:15 +00:00
|
|
|
SavedScriptPtr = NULL;
|
|
|
|
CMode = false;
|
2006-04-30 21:49:18 +00:00
|
|
|
Escape = true;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_Close
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void SC_Close (void)
|
|
|
|
{
|
|
|
|
if (ScriptOpen)
|
|
|
|
{
|
|
|
|
if (ScriptBuffer)
|
|
|
|
{
|
|
|
|
if (FreeScript)
|
|
|
|
{
|
|
|
|
delete[] ScriptBuffer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ScriptBuffer = NULL;
|
|
|
|
ScriptOpen = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_SavePos
|
|
|
|
//
|
|
|
|
// Saves the current script location for restoration later
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void SC_SavePos (void)
|
|
|
|
{
|
|
|
|
CheckOpen ();
|
|
|
|
if (sc_End)
|
|
|
|
{
|
|
|
|
SavedScriptPtr = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SavedScriptPtr = ScriptPtr;
|
|
|
|
SavedScriptLine = sc_Line;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_RestorePos
|
|
|
|
//
|
|
|
|
// Restores the previously saved script location
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void SC_RestorePos (void)
|
|
|
|
{
|
|
|
|
if (SavedScriptPtr)
|
|
|
|
{
|
|
|
|
ScriptPtr = SavedScriptPtr;
|
|
|
|
sc_Line = SavedScriptLine;
|
|
|
|
sc_End = false;
|
|
|
|
AlreadyGot = false;
|
2006-11-29 04:51:16 +00:00
|
|
|
LastGotToken = false;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_SetCMode
|
|
|
|
//
|
|
|
|
// Enables/disables C mode. In C mode, more characters are considered to
|
|
|
|
// be whole words than in non-C mode.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void SC_SetCMode (bool cmode)
|
|
|
|
{
|
|
|
|
CMode = cmode;
|
|
|
|
}
|
|
|
|
|
2006-06-21 23:22:17 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_SetEscape
|
|
|
|
//
|
|
|
|
// Turns the escape sequence \" in strings on or off. If it's off, that
|
|
|
|
// means you can't include quotation marks inside strings.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2006-04-11 08:36:23 +00:00
|
|
|
void SC_SetEscape (bool esc)
|
|
|
|
{
|
|
|
|
Escape = esc;
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
2006-11-29 04:51:16 +00:00
|
|
|
// SC_ScanString
|
|
|
|
//
|
|
|
|
// Set tokens true if you want sc_TokenType to be set.
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2006-11-29 04:51:16 +00:00
|
|
|
static bool SC_ScanString (bool tokens)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
2006-06-20 20:30:39 +00:00
|
|
|
char *marker, *tok;
|
2006-11-29 04:51:16 +00:00
|
|
|
bool return_val;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
CheckOpen();
|
|
|
|
if (AlreadyGot)
|
|
|
|
{
|
|
|
|
AlreadyGot = false;
|
2006-11-29 04:51:16 +00:00
|
|
|
if (!tokens || LastGotToken)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
ScriptPtr = LastGotPtr;
|
2007-10-05 08:04:38 +00:00
|
|
|
sc_Line = LastGotLine;
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
2006-11-29 04:51:16 +00:00
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
sc_Crossed = false;
|
|
|
|
if (ScriptPtr >= ScriptEndPtr)
|
|
|
|
{
|
|
|
|
sc_End = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-11-29 04:51:16 +00:00
|
|
|
LastGotPtr = ScriptPtr;
|
2007-10-05 08:04:38 +00:00
|
|
|
LastGotLine = sc_Line;
|
2006-11-29 04:51:16 +00:00
|
|
|
|
2006-06-20 20:30:39 +00:00
|
|
|
// In case the generated scanner does not use marker, avoid compiler warnings.
|
|
|
|
marker;
|
|
|
|
#include "sc_man_scanner.h"
|
2006-11-29 04:51:16 +00:00
|
|
|
LastGotToken = tokens;
|
|
|
|
return return_val;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_GetString
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
bool SC_GetString ()
|
|
|
|
{
|
|
|
|
return SC_ScanString (false);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_MustGetString
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void SC_MustGetString (void)
|
|
|
|
{
|
|
|
|
if (SC_GetString () == false)
|
|
|
|
{
|
|
|
|
SC_ScriptError ("Missing string (unexpected end of file).");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_MustGetStringName
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void SC_MustGetStringName (const char *name)
|
|
|
|
{
|
|
|
|
SC_MustGetString ();
|
|
|
|
if (SC_Compare (name) == false)
|
|
|
|
{
|
|
|
|
SC_ScriptError ("Expected '%s', got '%s'.", name, sc_String);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_CheckString
|
|
|
|
//
|
|
|
|
// Checks if the next token matches the specified string. Returns true if
|
|
|
|
// it does. If it doesn't, it ungets it and returns false.
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
bool SC_CheckString (const char *name)
|
|
|
|
{
|
|
|
|
if (SC_GetString ())
|
|
|
|
{
|
|
|
|
if (SC_Compare (name))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
SC_UnGet ();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-11-29 04:51:16 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_GetToken
|
|
|
|
//
|
|
|
|
// Sets sc_Float, sc_Number, and sc_Name based on sc_TokenType.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
bool SC_GetToken ()
|
|
|
|
{
|
|
|
|
if (SC_ScanString (true))
|
|
|
|
{
|
2007-05-28 14:46:49 +00:00
|
|
|
if (sc_TokenType == TK_NameConst)
|
2006-11-29 04:51:16 +00:00
|
|
|
{
|
|
|
|
sc_Name = FName(sc_String);
|
|
|
|
}
|
|
|
|
else if (sc_TokenType == TK_IntConst)
|
|
|
|
{
|
|
|
|
char *stopper;
|
|
|
|
sc_Number = strtol(sc_String, &stopper, 0);
|
|
|
|
sc_Float = sc_Number;
|
|
|
|
}
|
|
|
|
else if (sc_TokenType == TK_FloatConst)
|
|
|
|
{
|
|
|
|
char *stopper;
|
|
|
|
sc_Float = strtod(sc_String, &stopper);
|
|
|
|
}
|
|
|
|
else if (sc_TokenType == TK_StringConst)
|
|
|
|
{
|
|
|
|
strbin (sc_String);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_MustGetAnyToken
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void SC_MustGetAnyToken (void)
|
|
|
|
{
|
|
|
|
if (SC_GetToken () == false)
|
|
|
|
{
|
|
|
|
SC_ScriptError ("Missing token (unexpected end of file).");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
2007-05-27 12:16:43 +00:00
|
|
|
// SC_TokenMustBe
|
2006-11-29 04:51:16 +00:00
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2007-05-27 12:16:43 +00:00
|
|
|
void SC_TokenMustBe (int token)
|
2006-11-29 04:51:16 +00:00
|
|
|
{
|
|
|
|
if (sc_TokenType != token)
|
|
|
|
{
|
2006-12-09 00:16:10 +00:00
|
|
|
FString tok1 = SC_TokenName(token);
|
|
|
|
FString tok2 = SC_TokenName(sc_TokenType, sc_String);
|
|
|
|
SC_ScriptError ("Expected %s but got %s instead.", tok1.GetChars(), tok2.GetChars());
|
2006-11-29 04:51:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-27 12:16:43 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_MustGetToken
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void SC_MustGetToken (int token)
|
|
|
|
{
|
|
|
|
SC_MustGetAnyToken ();
|
|
|
|
SC_TokenMustBe(token);
|
|
|
|
}
|
|
|
|
|
2006-11-29 04:51:16 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_CheckToken
|
|
|
|
//
|
|
|
|
// Checks if the next token matches the specified token. Returns true if
|
|
|
|
// it does. If it doesn't, it ungets it and returns false.
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
bool SC_CheckToken (int token)
|
|
|
|
{
|
|
|
|
if (SC_GetToken ())
|
|
|
|
{
|
|
|
|
if (sc_TokenType == token)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
SC_UnGet ();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_GetNumber
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2006-09-14 00:02:31 +00:00
|
|
|
bool SC_GetNumber (void)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
char *stopper;
|
|
|
|
|
|
|
|
CheckOpen ();
|
|
|
|
if (SC_GetString())
|
|
|
|
{
|
|
|
|
if (strcmp (sc_String, "MAXINT") == 0)
|
|
|
|
{
|
|
|
|
sc_Number = INT_MAX;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sc_Number = strtol (sc_String, &stopper, 0);
|
|
|
|
if (*stopper != 0)
|
|
|
|
{
|
|
|
|
SC_ScriptError ("SC_GetNumber: Bad numeric constant \"%s\".", sc_String);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sc_Float = (float)sc_Number;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_MustGetNumber
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void SC_MustGetNumber (void)
|
|
|
|
{
|
|
|
|
if (SC_GetNumber() == false)
|
|
|
|
{
|
|
|
|
SC_ScriptError ("Missing integer (unexpected end of file).");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_CheckNumber
|
|
|
|
// similar to SC_GetNumber but ungets the token if it isn't a number
|
|
|
|
// and does not print an error
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2006-09-14 00:02:31 +00:00
|
|
|
bool SC_CheckNumber (void)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
char *stopper;
|
|
|
|
|
|
|
|
//CheckOpen ();
|
|
|
|
if (SC_GetString())
|
|
|
|
{
|
2007-12-08 22:29:59 +00:00
|
|
|
if (sc_String[0] == 0)
|
|
|
|
{
|
|
|
|
SC_UnGet();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if (strcmp (sc_String, "MAXINT") == 0)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
sc_Number = INT_MAX;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sc_Number = strtol (sc_String, &stopper, 0);
|
|
|
|
if (*stopper != 0)
|
|
|
|
{
|
|
|
|
SC_UnGet();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sc_Float = (float)sc_Number;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-15 15:00:29 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_CheckFloat
|
|
|
|
// [GRB] Same as SC_CheckNumber, only for floats
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2006-09-14 00:02:31 +00:00
|
|
|
bool SC_CheckFloat (void)
|
2006-04-15 15:00:29 +00:00
|
|
|
{
|
|
|
|
char *stopper;
|
|
|
|
|
|
|
|
//CheckOpen ();
|
|
|
|
if (SC_GetString())
|
|
|
|
{
|
|
|
|
sc_Float = strtod (sc_String, &stopper);
|
|
|
|
if (*stopper != 0)
|
|
|
|
{
|
|
|
|
SC_UnGet();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_GetFloat
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2006-09-14 00:02:31 +00:00
|
|
|
bool SC_GetFloat (void)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
char *stopper;
|
|
|
|
|
|
|
|
CheckOpen ();
|
|
|
|
if (SC_GetString())
|
|
|
|
{
|
|
|
|
sc_Float = (float)strtod (sc_String, &stopper);
|
|
|
|
if (*stopper != 0)
|
|
|
|
{
|
|
|
|
I_Error ("SC_GetFloat: Bad numeric constant \"%s\".\n"
|
2006-04-30 21:49:18 +00:00
|
|
|
"Script %s, Line %d\n", sc_String, ScriptName.GetChars(), sc_Line);
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
sc_Number = (int)sc_Float;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_MustGetFloat
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void SC_MustGetFloat (void)
|
|
|
|
{
|
|
|
|
if (SC_GetFloat() == false)
|
|
|
|
{
|
|
|
|
SC_ScriptError ("Missing floating-point number (unexpected end of file).");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_UnGet
|
|
|
|
//
|
|
|
|
// Assumes there is a valid string in sc_String.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void SC_UnGet (void)
|
|
|
|
{
|
|
|
|
AlreadyGot = true;
|
2007-10-05 08:04:38 +00:00
|
|
|
AlreadyGotLine = LastGotLine; // in case of an error we want the line of the last token.
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_Check
|
|
|
|
//
|
|
|
|
// Returns true if another token is on the current line.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
/*
|
2006-09-14 00:02:31 +00:00
|
|
|
bool SC_Check(void)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
char *text;
|
|
|
|
|
|
|
|
CheckOpen();
|
|
|
|
text = ScriptPtr;
|
|
|
|
if(text >= ScriptEndPtr)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
while(*text <= 32)
|
|
|
|
{
|
|
|
|
if(*text == '\n')
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
text++;
|
|
|
|
if(text == ScriptEndPtr)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(*text == ASCII_COMMENT)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_MatchString
|
|
|
|
//
|
|
|
|
// Returns the index of the first match to sc_String from the passed
|
|
|
|
// array of strings, or -1 if not found.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
int SC_MatchString (const char **strings)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; *strings != NULL; i++)
|
|
|
|
{
|
|
|
|
if (SC_Compare (*strings++))
|
|
|
|
{
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_MustMatchString
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
int SC_MustMatchString (const char **strings)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
i = SC_MatchString (strings);
|
|
|
|
if (i == -1)
|
|
|
|
{
|
|
|
|
SC_ScriptError (NULL);
|
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_Compare
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
2006-09-14 00:02:31 +00:00
|
|
|
bool SC_Compare (const char *text)
|
2006-02-24 04:48:15 +00:00
|
|
|
{
|
|
|
|
return (stricmp (text, sc_String) == 0);
|
|
|
|
}
|
|
|
|
|
2006-11-29 04:51:16 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_TokenName
|
|
|
|
//
|
|
|
|
// Returns the name of a token.
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
FString SC_TokenName (int token, const char *string)
|
|
|
|
{
|
|
|
|
static const char *const names[] =
|
|
|
|
{
|
2006-12-04 23:25:59 +00:00
|
|
|
"identifier",
|
|
|
|
"string constant",
|
|
|
|
"name constant",
|
|
|
|
"integer constant",
|
|
|
|
"float constant",
|
2006-11-29 04:51:16 +00:00
|
|
|
"'...'",
|
|
|
|
"'>>='",
|
|
|
|
"'<<='",
|
|
|
|
"'+='",
|
|
|
|
"'-='",
|
|
|
|
"'*='",
|
|
|
|
"'/='",
|
|
|
|
"'%='",
|
|
|
|
"'&='",
|
|
|
|
"'^='",
|
|
|
|
"'|='",
|
|
|
|
"'>>'",
|
2007-10-19 08:49:02 +00:00
|
|
|
"'>>>'",
|
2006-11-29 04:51:16 +00:00
|
|
|
"'<<'",
|
|
|
|
"'++'",
|
|
|
|
"'--'",
|
|
|
|
"'&&'",
|
|
|
|
"'||'",
|
|
|
|
"'<='",
|
|
|
|
"'>='",
|
|
|
|
"'=='",
|
2006-12-04 23:25:59 +00:00
|
|
|
"'!='",
|
|
|
|
"'action'",
|
2006-11-29 04:51:16 +00:00
|
|
|
"'break'",
|
|
|
|
"'case'",
|
|
|
|
"'const'",
|
|
|
|
"'continue'",
|
|
|
|
"'default'",
|
|
|
|
"'do'",
|
|
|
|
"'else'",
|
|
|
|
"'for'",
|
|
|
|
"'if'",
|
|
|
|
"'return'",
|
|
|
|
"'states'",
|
|
|
|
"'switch'",
|
|
|
|
"'until'",
|
|
|
|
"'while'",
|
|
|
|
"'bool'",
|
|
|
|
"'float'",
|
|
|
|
"'double'",
|
|
|
|
"'char'",
|
|
|
|
"'byte'",
|
|
|
|
"'sbyte'",
|
|
|
|
"'short'",
|
|
|
|
"'ushort'",
|
|
|
|
"'int'",
|
|
|
|
"'uint'",
|
|
|
|
"'long'",
|
|
|
|
"'ulong'",
|
|
|
|
"'void'",
|
|
|
|
"'struct'",
|
|
|
|
"'class'",
|
|
|
|
"'mode'",
|
|
|
|
"'enum'",
|
|
|
|
"'name'",
|
|
|
|
"'string'",
|
|
|
|
"'sound'",
|
|
|
|
"'state'",
|
|
|
|
"'color'",
|
|
|
|
"'goto'",
|
|
|
|
"'abstract'",
|
|
|
|
"'foreach'",
|
|
|
|
"'true'",
|
|
|
|
"'false'",
|
|
|
|
"'none'",
|
|
|
|
"'new'",
|
|
|
|
"'instanceof'",
|
|
|
|
"'auto'",
|
|
|
|
"'exec'",
|
|
|
|
"'defaultproperties'",
|
|
|
|
"'native'",
|
|
|
|
"'out'",
|
|
|
|
"'ref'",
|
|
|
|
"'event'",
|
|
|
|
"'static'",
|
|
|
|
"'transient'",
|
|
|
|
"'volatile'",
|
|
|
|
"'final'",
|
|
|
|
"'throws'",
|
|
|
|
"'extends'",
|
|
|
|
"'public'",
|
|
|
|
"'protected'",
|
|
|
|
"'private'",
|
|
|
|
"'dot'",
|
|
|
|
"'cross'",
|
|
|
|
"'ignores'",
|
|
|
|
"'localized'",
|
|
|
|
"'latent'",
|
|
|
|
"'singular'",
|
|
|
|
"'config'",
|
|
|
|
"'coerce'",
|
|
|
|
"'iterator'",
|
|
|
|
"'optional'",
|
|
|
|
"'export'",
|
|
|
|
"'virtual'",
|
|
|
|
"'super'",
|
|
|
|
"'global'",
|
|
|
|
"'self'",
|
|
|
|
"'stop'",
|
|
|
|
"'eval'",
|
|
|
|
"'evalnot'",
|
2007-05-28 14:46:49 +00:00
|
|
|
"'pickup'",
|
|
|
|
"'breakable'",
|
|
|
|
"'projectile'",
|
|
|
|
"'#include'",
|
2006-11-29 04:51:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
FString work;
|
|
|
|
|
|
|
|
if (token > ' ' && token < 256)
|
|
|
|
{
|
|
|
|
work = '\'';
|
|
|
|
work += token;
|
|
|
|
work += '\'';
|
|
|
|
}
|
|
|
|
else if (token >= TK_Identifier && token < TK_LastToken)
|
|
|
|
{
|
|
|
|
work = names[token - TK_Identifier];
|
|
|
|
if (string != NULL && token >= TK_Identifier && token <= TK_FloatConst)
|
|
|
|
{
|
|
|
|
work += ' ';
|
|
|
|
char quote = (token == TK_StringConst) ? '"' : '\'';
|
|
|
|
work += quote;
|
|
|
|
work += string;
|
|
|
|
work += quote;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FString work;
|
|
|
|
work.Format ("Unknown(%d)", token);
|
|
|
|
return work;
|
|
|
|
}
|
|
|
|
return work;
|
|
|
|
}
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// SC_ScriptError
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
void STACK_ARGS SC_ScriptError (const char *message, ...)
|
|
|
|
{
|
2006-05-03 22:45:01 +00:00
|
|
|
FString composed;
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
if (message == NULL)
|
|
|
|
{
|
|
|
|
composed = "Bad syntax.";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
va_list arglist;
|
|
|
|
va_start (arglist, message);
|
|
|
|
composed.VFormat (message, arglist);
|
|
|
|
va_end (arglist);
|
|
|
|
}
|
|
|
|
|
2006-04-30 21:49:18 +00:00
|
|
|
I_Error ("Script error, \"%s\" line %d:\n%s\n", ScriptName.GetChars(),
|
2007-10-05 08:04:38 +00:00
|
|
|
AlreadyGot? AlreadyGotLine : sc_Line, composed.GetChars());
|
2006-02-24 04:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// CheckOpen
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
static void CheckOpen(void)
|
|
|
|
{
|
|
|
|
if (ScriptOpen == false)
|
|
|
|
{
|
|
|
|
I_FatalError ("SC_ call before SC_Open().");
|
|
|
|
}
|
|
|
|
}
|
2006-04-30 21:49:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// Script state saving
|
|
|
|
// This allows recursive script execution
|
|
|
|
// This does not save the last token!
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
struct SavedScript
|
|
|
|
{
|
|
|
|
int sc_Line;
|
2006-09-14 00:02:31 +00:00
|
|
|
bool sc_End;
|
|
|
|
bool sc_Crossed;
|
|
|
|
bool sc_FileScripts;
|
2006-04-30 21:49:18 +00:00
|
|
|
|
2006-05-03 22:45:01 +00:00
|
|
|
FString *ScriptName;
|
2006-04-30 21:49:18 +00:00
|
|
|
char *ScriptBuffer;
|
|
|
|
char *ScriptPtr;
|
|
|
|
char *ScriptEndPtr;
|
|
|
|
bool ScriptOpen;
|
|
|
|
int ScriptSize;
|
|
|
|
bool FreeScript;
|
|
|
|
char *SavedScriptPtr;
|
|
|
|
int SavedScriptLine;
|
|
|
|
bool CMode;
|
|
|
|
bool Escape;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static TArray<SavedScript> SavedScripts;
|
|
|
|
|
|
|
|
void SC_SaveScriptState()
|
|
|
|
{
|
|
|
|
SavedScript ss;
|
|
|
|
|
|
|
|
ss.sc_Line = sc_Line;
|
|
|
|
ss.sc_End = sc_End;
|
|
|
|
ss.sc_Crossed = sc_Crossed;
|
|
|
|
ss.sc_FileScripts = sc_FileScripts;
|
2006-05-03 22:45:01 +00:00
|
|
|
ss.ScriptName = ::new FString(ScriptName);
|
2006-04-30 21:49:18 +00:00
|
|
|
ss.ScriptBuffer = ScriptBuffer;
|
|
|
|
ss.ScriptPtr = ScriptPtr;
|
|
|
|
ss.ScriptEndPtr = ScriptEndPtr;
|
|
|
|
ss.ScriptOpen = ScriptOpen;
|
|
|
|
ss.ScriptSize = ScriptSize;
|
|
|
|
ss.FreeScript = FreeScript;
|
|
|
|
ss.SavedScriptPtr = SavedScriptPtr;
|
|
|
|
ss.SavedScriptLine = SavedScriptLine;
|
|
|
|
ss.CMode = CMode;
|
|
|
|
ss.Escape = Escape;
|
|
|
|
SavedScripts.Push(ss);
|
|
|
|
ScriptOpen = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SC_RestoreScriptState()
|
|
|
|
{
|
|
|
|
if (SavedScripts.Size()>0)
|
|
|
|
{
|
|
|
|
SavedScript ss;
|
|
|
|
|
|
|
|
SavedScripts.Pop(ss);
|
|
|
|
sc_Line = ss.sc_Line;
|
|
|
|
sc_End = ss.sc_End;
|
|
|
|
sc_Crossed = ss.sc_Crossed;
|
|
|
|
sc_FileScripts = ss.sc_FileScripts;
|
|
|
|
ScriptName = *ss.ScriptName;
|
2006-05-03 14:54:48 +00:00
|
|
|
::delete ss.ScriptName;
|
2006-04-30 21:49:18 +00:00
|
|
|
ScriptBuffer = ss.ScriptBuffer;
|
|
|
|
ScriptPtr = ss.ScriptPtr;
|
|
|
|
ScriptEndPtr = ss.ScriptEndPtr;
|
|
|
|
ScriptOpen = ss.ScriptOpen;
|
|
|
|
ScriptSize = ss.ScriptSize;
|
|
|
|
FreeScript = ss.FreeScript;
|
|
|
|
SavedScriptPtr = ss.SavedScriptPtr;
|
|
|
|
SavedScriptLine = ss.SavedScriptLine;
|
|
|
|
CMode = ss.CMode;
|
|
|
|
Escape = ss.Escape;
|
|
|
|
SavedScripts.ShrinkToFit();
|
|
|
|
AlreadyGot = false;
|
2006-11-29 04:51:16 +00:00
|
|
|
LastGotToken = false;
|
2006-04-30 21:49:18 +00:00
|
|
|
}
|
|
|
|
}
|