colobot/src/CBot/CBotInstr/CBotFunction.h

282 lines
6.7 KiB
C
Raw Normal View History

/*
* This file is part of the Colobot: Gold Edition source code
* Copyright (C) 2001-2015, Daniel Roux, EPSITEC SA & TerranovaTeam
* http://epsitec.ch; http://colobot.info; http://github.com/colobot
*
* This program 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.
*
* 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, see http://gnu.org/licenses
*/
#pragma once
// Modules inlcude
#include "CBot/CBotInstr/CBotInstr.h"
// Local include
// Global include
2015-12-24 14:07:40 +00:00
#include <set>
/*!
* \brief The CBotFunction class A function declaration. Compilation of various
* functions declared by the user
*/
class CBotFunction : public CBotInstr
{
public:
/*!
* \brief CBotFunction
*/
CBotFunction();
/*!
* \brief ~CBotFunction
*/
~CBotFunction();
/*!
* \brief Compile Compiles a new function
* \param p
* \param pStack
* \param pFunc
* \param bLocal allows of the declaration of parameters on the same level
* as the elements belonging to the class for methods.
* \return
*/
static CBotFunction* Compile(CBotToken* &p,
CBotCStack* pStack,
CBotFunction* pFunc,
bool bLocal = true);
/*!
* \brief Compile1 Pre-compile a new function.
* \param p
* \param pStack
* \param pClass
* \return
*/
static CBotFunction* Compile1(CBotToken* &p,
CBotCStack* pStack,
CBotClass* pClass);
/*!
* \brief Execute
* \param ppVars
* \param pj
* \param pInstance
* \return
*/
bool Execute(CBotVar** ppVars,
CBotStack* &pj,
CBotVar* pInstance = nullptr);
/*!
* \brief RestoreState
* \param ppVars
* \param pj
* \param pInstance
*/
void RestoreState(CBotVar** ppVars,
CBotStack* &pj,
CBotVar* pInstance = nullptr);
/*!
* \brief AddNext
* \param p
*/
void AddNext(CBotFunction* p);
/*!
* \brief CompileCall
* \param name
* \param ppVars
* \param nIdent
* \return
*/
CBotTypResult CompileCall(const std::string& name,
CBotVar** ppVars,
long& nIdent);
/*!
* \brief FindLocalOrPublic Is a function according to its unique identifier
* if the identifier is not found, looking by name and parameters.
* \param nIdent
* \param name
* \param ppVars
* \param TypeOrError
* \param bPublic
* \return
*/
CBotFunction* FindLocalOrPublic(long& nIdent, const std::string& name,
CBotVar** ppVars,
CBotTypResult& TypeOrError,
bool bPublic = true);
/*!
* \brief DoCall Fait un appel à une fonction.
* \param nIdent
* \param name
* \param ppVars
* \param pStack
* \param pToken
* \return
*/
int DoCall(long& nIdent,
const std::string& name,
CBotVar** ppVars,
CBotStack* pStack,
CBotToken* pToken);
/*!
* \brief RestoreCall
* \param nIdent
* \param name
* \param ppVars
* \param pStack
*/
void RestoreCall(long& nIdent,
const std::string& name,
CBotVar** ppVars,
CBotStack* pStack);
/*!
* \brief DoCall Makes call of a method note: this is already on the stack,
* the pointer pThis is just to simplify.
* \param nIdent
* \param name
* \param pThis
* \param ppVars
* \param pStack
* \param pToken
* \param pClass
* \return
*/
int DoCall(long& nIdent,
const std::string& name,
CBotVar* pThis,
CBotVar** ppVars,
CBotStack* pStack,
CBotToken* pToken,
CBotClass* pClass);
/*!
* \brief RestoreCall
* \param nIdent
* \param name
* \param pThis
* \param ppVars
* \param pStack
* \param pClass
*/
void RestoreCall(long& nIdent,
const std::string& name,
CBotVar* pThis,
CBotVar** ppVars,
CBotStack* pStack,
CBotClass* pClass);
/*!
* \brief CheckParam See if the "signature" of parameters is identical.
* \param pParam
* \return
*/
bool CheckParam(CBotDefParam* pParam);
/*!
* \brief AddPublic
* \param pfunc
*/
static void AddPublic(CBotFunction* pfunc);
/*!
* \brief GetName
* \return
*/
std::string GetName();
/*!
* \brief GetParams
* \return
*/
std::string GetParams();
/*!
* \brief IsPublic
* \return
*/
bool IsPublic();
/*!
* \brief IsExtern
* \return
*/
bool IsExtern();
/*!
* \brief Next
* \return
*/
CBotFunction* Next();
/*!
* \brief GetPosition
* \param start
* \param stop
* \param modestart
* \param modestop
* \return
*/
bool GetPosition(int& start, int& stop,
CBotGet modestart,
CBotGet modestop);
private:
long m_nFuncIdent;
//! Synchronized method.
bool m_bSynchro;
//! Parameter list.
CBotDefParam* m_Param;
//! The instruction block.
CBotInstr* m_Block;
CBotFunction* m_next;
//! If returns CBotTypClass.
CBotToken m_retToken;
//! Complete type of the result.
CBotTypResult m_retTyp;
//! Public function.
bool m_bPublic;
//! Extern function.
bool m_bExtern;
//! Name of the class we derive.
std::string m_MasterClass;
CBotProgram* m_pProg;
//! For the position of the word "extern".
CBotToken m_extern;
CBotToken m_openpar;
CBotToken m_closepar;
CBotToken m_openblk;
CBotToken m_closeblk;
2015-12-24 14:07:40 +00:00
//! List of public functions
static std::set<CBotFunction*> m_publicFunctions;
friend class CBotProgram;
friend class CBotClass;
friend class CBotCStack;
};