gzdoom/src/gamedata/xlat/parse_xlat.cpp

181 lines
4.2 KiB
C++
Raw Normal View History

2016-03-01 15:47:10 +00:00
/*
** parse_xlat.cpp
** Translation definition compiler
**
**---------------------------------------------------------------------------
** Copyright 1998-2008 Randy Heit
** Copyright 2008 Christoph Oelckers
** All rights reserved.
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions
** are met:
**
** 1. Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** 2. Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in the
** documentation and/or other materials provided with the distribution.
** 3. The name of the author may not be used to endorse or promote products
** derived from this software without specific prior written permission.
**
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**---------------------------------------------------------------------------
**
*/
#include "doomtype.h"
#include "parsecontext.h"
#include "xlat_parser.h"
#include "xlat.h"
// Token types not used in the grammar
enum
{
XLAT_INCLUDE=128,
XLAT_STRING,
XLAT_FLOATVAL, // floats are not used by the grammar
};
DEFINE_TOKEN_TRANS(XLAT_)
TMap<FName, FTranslator > translators;
2016-03-01 15:47:10 +00:00
struct SpecialArgs
{
int addflags;
int argcount;
int args[5];
};
struct SpecialArg
{
int arg;
ELineTransArgOp argop;
};
struct ListFilter
{
2017-03-08 17:47:52 +00:00
uint16_t filter;
uint8_t value;
2016-03-01 15:47:10 +00:00
};
struct MoreFilters
{
MoreFilters *next;
ListFilter filter;
};
struct MoreLines
{
MoreLines *next;
FBoomArg arg;
};
struct ParseBoomArg
{
2017-03-08 17:47:52 +00:00
uint8_t constant;
uint16_t mask;
2016-03-01 15:47:10 +00:00
MoreFilters *filters;
};
struct XlatParseContext : public FParseContext
{
XlatParseContext(void *parser, ParseFunc parse, int *tt, FTranslator *trans)
2016-03-01 15:47:10 +00:00
: FParseContext(parser, parse, tt)
{
Translator = trans;
2016-03-01 15:47:10 +00:00
DefiningLineType = -1;
}
//==========================================================================
//
//
//
//==========================================================================
bool FindToken (char *tok, int *type)
{
static const char *tokens[] =
{
"arg2", "arg3", "arg4", "arg5", "bitmask", "clear",
"define", "enum", "flags", "include", "lineflag", "lineid",
"maxlinespecial", "nobitmask", "sector", "tag"
};
static const short types[] =
{
XLAT_ARG2, XLAT_ARG3, XLAT_ARG4, XLAT_ARG5, XLAT_BITMASK, XLAT_CLEAR,
XLAT_DEFINE, XLAT_ENUM, XLAT_FLAGS, XLAT_INCLUDE, XLAT_LINEFLAG, XLAT_TAG,
XLAT_MAXLINESPECIAL, XLAT_NOBITMASK, XLAT_SECTOR, XLAT_TAG
};
int min = 0, max = countof(tokens) - 1;
while (min <= max)
{
int mid = (min + max) / 2;
int lexval = stricmp (tok, tokens[mid]);
if (lexval == 0)
{
*type = types[mid];
return true;
}
else if (lexval > 0)
{
min = mid + 1;
}
else
{
max = mid - 1;
}
}
return false;
}
int DefiningLineType;
FTranslator *Translator;
2016-03-01 15:47:10 +00:00
};
#include "xlat_parser.c"
//==========================================================================
//
//
//
//==========================================================================
FTranslator *P_LoadTranslator(const char *lumpname)
2016-03-01 15:47:10 +00:00
{
FName fname = lumpname;
auto translator = &translators[fname];
if (!translator->loaded)
2016-03-01 15:47:10 +00:00
{
void *pParser = XlatParseAlloc(malloc);
XlatParseContext context(pParser, XlatParse, TokenTrans, translator);
2016-03-01 15:47:10 +00:00
context.ParseLump(lumpname);
FParseToken tok;
tok.val=0;
XlatParse(pParser, 0, tok, &context);
XlatParseFree(pParser, free);
translator->loaded = true;
2016-03-01 15:47:10 +00:00
}
return translator;
2016-03-01 15:47:10 +00:00
}