2015-11-11 21:16:38 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the Colobot: Gold Edition source code
|
2021-09-11 13:52:34 +00:00
|
|
|
* Copyright (C) 2001-2021, Daniel Roux, EPSITEC SA & TerranovaTeam
|
2015-11-11 21:16:38 +00:00
|
|
|
* 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
|
|
|
|
|
2015-11-23 20:59:56 +00:00
|
|
|
#include "CBot/CBotInstr/CBotInstr.h"
|
2015-11-16 21:00:01 +00:00
|
|
|
|
2015-12-26 13:19:24 +00:00
|
|
|
namespace CBot
|
|
|
|
{
|
2015-11-11 21:16:38 +00:00
|
|
|
|
2015-12-30 18:13:32 +00:00
|
|
|
/**
|
|
|
|
* \brief Compilation of left side of an assignment
|
|
|
|
*
|
|
|
|
* Some examples:
|
|
|
|
* \code
|
|
|
|
* varname
|
|
|
|
* varname[3]
|
|
|
|
* varname.x
|
|
|
|
* varname.pos.x
|
|
|
|
* varname[2].pos.x
|
|
|
|
* varname[1].pos[2].x
|
|
|
|
* varname[1][2][3]
|
|
|
|
* \endcode
|
2015-11-11 21:16:38 +00:00
|
|
|
*/
|
|
|
|
class CBotLeftExpr : public CBotInstr
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CBotLeftExpr();
|
|
|
|
~CBotLeftExpr();
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief Compile Compiles an expression for a left-operand
|
|
|
|
* (left of an assignment).
|
|
|
|
* \param p
|
|
|
|
* \param pStack
|
|
|
|
* \return
|
|
|
|
*/
|
|
|
|
static CBotLeftExpr* Compile(CBotToken* &p, CBotCStack* pStack);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief Execute Runs, is a variable and assigns the result to the stack.
|
|
|
|
* \param pStack
|
|
|
|
* \param array
|
|
|
|
* \return
|
|
|
|
*/
|
|
|
|
bool Execute(CBotStack* &pStack, CBotStack* array);
|
|
|
|
|
2017-05-22 09:10:35 +00:00
|
|
|
using CBotInstr::Execute;
|
|
|
|
|
2015-11-11 21:16:38 +00:00
|
|
|
/*!
|
|
|
|
* \brief ExecuteVar Fetch a variable during compilation.
|
|
|
|
* \param pVar
|
|
|
|
* \param pile
|
|
|
|
* \return
|
|
|
|
*/
|
|
|
|
bool ExecuteVar(CBotVar* &pVar, CBotCStack* &pile) override;
|
|
|
|
|
2017-05-22 09:10:35 +00:00
|
|
|
using CBotInstr::ExecuteVar;
|
|
|
|
|
2015-11-11 21:16:38 +00:00
|
|
|
/*!
|
|
|
|
* \brief ExecuteVar Fetch the variable at runtume.
|
|
|
|
* \param pVar
|
|
|
|
* \param pile
|
|
|
|
* \param prevToken
|
|
|
|
* \param bStep
|
|
|
|
* \return
|
|
|
|
*/
|
|
|
|
bool ExecuteVar(CBotVar* &pVar, CBotStack* &pile, CBotToken* prevToken, bool bStep);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief RestoreStateVar
|
|
|
|
* \param pile
|
|
|
|
* \param bMain
|
|
|
|
*/
|
|
|
|
void RestoreStateVar(CBotStack* &pile, bool bMain) override;
|
|
|
|
|
2015-12-27 15:51:57 +00:00
|
|
|
protected:
|
2016-01-23 19:49:01 +00:00
|
|
|
virtual const std::string GetDebugName() override { return "CBotLeftExpr"; }
|
|
|
|
virtual std::string GetDebugData() override;
|
2015-12-27 15:51:57 +00:00
|
|
|
|
2015-11-11 21:16:38 +00:00
|
|
|
private:
|
|
|
|
long m_nIdent;
|
|
|
|
};
|
2015-12-26 13:19:24 +00:00
|
|
|
|
|
|
|
} // namespace CBot
|