Compile fix after previous commit; fix MSVC errors; added missing license headers
parent
6482001b9b
commit
8fa5b208c2
|
@ -163,7 +163,7 @@ CBotFunction* CBotFunction::Compile(CBotToken* &p, CBotCStack* pStack, CBotFunct
|
||||||
pp = p;
|
pp = p;
|
||||||
if ( IsOfType(p, ID_EXTERN) )
|
if ( IsOfType(p, ID_EXTERN) )
|
||||||
{
|
{
|
||||||
func->m_extern = pp; // for the position of the word "extern"
|
func->m_extern = *pp; // for the position of the word "extern"
|
||||||
func->m_bExtern = true;
|
func->m_bExtern = true;
|
||||||
// func->m_bPublic = true; // therefore also public!
|
// func->m_bPublic = true; // therefore also public!
|
||||||
continue;
|
continue;
|
||||||
|
@ -200,9 +200,9 @@ CBotFunction* CBotFunction::Compile(CBotToken* &p, CBotCStack* pStack, CBotFunct
|
||||||
if (!IsOfType(p, TokenTypVar)) goto bad;
|
if (!IsOfType(p, TokenTypVar)) goto bad;
|
||||||
|
|
||||||
}
|
}
|
||||||
func->m_openpar = p;
|
func->m_openpar = *p;
|
||||||
func->m_Param = CBotDefParam::Compile( p, pStk );
|
func->m_Param = CBotDefParam::Compile( p, pStk );
|
||||||
func->m_closepar = p->GetPrev();
|
func->m_closepar = *(p->GetPrev());
|
||||||
if (pStk->IsOk())
|
if (pStk->IsOk())
|
||||||
{
|
{
|
||||||
pStk->SetRetType(func->m_retTyp); // for knowledge what type returns
|
pStk->SetRetType(func->m_retTyp); // for knowledge what type returns
|
||||||
|
@ -234,9 +234,9 @@ CBotFunction* CBotFunction::Compile(CBotToken* &p, CBotCStack* pStack, CBotFunct
|
||||||
}
|
}
|
||||||
|
|
||||||
// and compiles the following instruction block
|
// and compiles the following instruction block
|
||||||
func->m_openblk = p;
|
func->m_openblk = *p;
|
||||||
func->m_Block = CBotBlock::Compile(p, pStk, false);
|
func->m_Block = CBotBlock::Compile(p, pStk, false);
|
||||||
func->m_closeblk = p->GetPrev();
|
func->m_closeblk = *(p->GetPrev());
|
||||||
if ( pStk->IsOk() )
|
if ( pStk->IsOk() )
|
||||||
{
|
{
|
||||||
if ( func->m_bPublic ) // public function, return known for all
|
if ( func->m_bPublic ) // public function, return known for all
|
||||||
|
|
|
@ -56,7 +56,7 @@ bool CBotLogicExpr::Execute(CBotStack* &pStack)
|
||||||
if (!pStk1->SetState(1)) return false;
|
if (!pStk1->SetState(1)) return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( pStk1->GetVal() == true )
|
if (pStk1->GetVal() != 0)
|
||||||
{
|
{
|
||||||
if ( !m_op1->Execute(pStk1) ) return false;
|
if ( !m_op1->Execute(pStk1) ) return false;
|
||||||
}
|
}
|
||||||
|
@ -82,7 +82,7 @@ void CBotLogicExpr::RestoreState(CBotStack* &pStack, bool bMain)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( pStk1->GetVal() == true )
|
if (pStk1->GetVal() != 0)
|
||||||
{
|
{
|
||||||
m_op1->RestoreState(pStk1, bMain);
|
m_op1->RestoreState(pStk1, bMain);
|
||||||
}
|
}
|
||||||
|
|
|
@ -66,7 +66,7 @@ CBotInstr* CBotNew::Compile(CBotToken* &p, CBotCStack* pStack)
|
||||||
CBotNew* inst = new CBotNew();
|
CBotNew* inst = new CBotNew();
|
||||||
inst->SetToken(pp);
|
inst->SetToken(pp);
|
||||||
|
|
||||||
inst->m_vartoken = p;
|
inst->m_vartoken = *p;
|
||||||
p = p->GetNext();
|
p = p->GetNext();
|
||||||
|
|
||||||
// creates the object on the "job"
|
// creates the object on the "job"
|
||||||
|
|
|
@ -134,7 +134,7 @@ bool CBotTry::Execute(CBotStack* &pj)
|
||||||
}
|
}
|
||||||
if ( --state <= 0 )
|
if ( --state <= 0 )
|
||||||
{
|
{
|
||||||
if ( pile2->GetVal() == true )
|
if (pile2->GetVal() != 0)
|
||||||
{
|
{
|
||||||
// pile0->SetState(1);
|
// pile0->SetState(1);
|
||||||
|
|
||||||
|
@ -210,7 +210,7 @@ void CBotTry::RestoreState(CBotStack* &pj, bool bMain)
|
||||||
}
|
}
|
||||||
if ( --state <= 0 )
|
if ( --state <= 0 )
|
||||||
{
|
{
|
||||||
if ( pile2->GetVal() == true )
|
if (pile2->GetVal() != 0)
|
||||||
{
|
{
|
||||||
pc->RestoreState(pile2, bMain); // execute the operation
|
pc->RestoreState(pile2, bMain); // execute the operation
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -134,39 +134,19 @@ std::map<std::string, long> CBotToken::m_defineNum;
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
CBotToken::CBotToken()
|
CBotToken::CBotToken()
|
||||||
{
|
{
|
||||||
m_next = nullptr;
|
|
||||||
m_prev = nullptr;
|
|
||||||
m_type = TokenTypVar; // at the beginning a default variable type
|
|
||||||
m_keywordId = -1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
CBotToken::CBotToken(const CBotToken& pSrc)
|
CBotToken::CBotToken(const CBotToken& pSrc)
|
||||||
{
|
{
|
||||||
m_next = nullptr;
|
m_type = pSrc.m_type;
|
||||||
m_prev = nullptr;
|
m_keywordId = pSrc.m_keywordId;
|
||||||
|
|
||||||
m_text.clear();
|
m_text = pSrc.m_text;
|
||||||
m_sep.clear();
|
m_sep = pSrc.m_sep;
|
||||||
|
|
||||||
m_type = TokenTypNone;
|
m_start = pSrc.m_start;
|
||||||
m_keywordId = 0;
|
m_end = pSrc.m_end;
|
||||||
|
|
||||||
m_start = 0;
|
|
||||||
m_end = 0;
|
|
||||||
|
|
||||||
if ( pSrc != nullptr )
|
|
||||||
{
|
|
||||||
|
|
||||||
m_type = pSrc->m_type;
|
|
||||||
m_keywordId = pSrc->m_IdKeyWord;
|
|
||||||
|
|
||||||
m_text = pSrc->m_Text;
|
|
||||||
m_sep = pSrc->m_Sep;
|
|
||||||
|
|
||||||
m_start = pSrc->m_start;
|
|
||||||
m_end = pSrc->m_end;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -200,23 +200,23 @@ private:
|
||||||
private:
|
private:
|
||||||
|
|
||||||
//! The next token in the linked list
|
//! The next token in the linked list
|
||||||
CBotToken* m_next;
|
CBotToken* m_next = nullptr;
|
||||||
//! The previous token in the linked list
|
//! The previous token in the linked list
|
||||||
CBotToken* m_prev;
|
CBotToken* m_prev = nullptr;
|
||||||
//! The token type
|
//! The token type
|
||||||
TokenType m_type;
|
TokenType m_type = TokenTypVar;
|
||||||
//! The id of the keyword
|
//! The id of the keyword
|
||||||
long m_keywordId;
|
long m_keywordId = -1;
|
||||||
|
|
||||||
//! The token string
|
//! The token string
|
||||||
std::string m_text;
|
std::string m_text = "";
|
||||||
//! The separator that appeared after this token
|
//! The separator that appeared after this token
|
||||||
std::string m_sep;
|
std::string m_sep = "";
|
||||||
|
|
||||||
//! The strat position of the token in the CBotProgram
|
//! The strat position of the token in the CBotProgram
|
||||||
int m_start;
|
int m_start = 0;
|
||||||
//! The end position of the token in the CBotProgram
|
//! The end position of the token in the CBotProgram
|
||||||
int m_end;
|
int m_end = 0;
|
||||||
|
|
||||||
//! Map of all defined constants (see DefineNum())
|
//! Map of all defined constants (see DefineNum())
|
||||||
static std::map<std::string, long> m_defineNum;
|
static std::map<std::string, long> m_defineNum;
|
||||||
|
|
|
@ -36,7 +36,7 @@ CBotVarArray::CBotVarArray(const CBotToken* name, CBotTypResult& type )
|
||||||
if ( !type.Eq(CBotTypArrayPointer) &&
|
if ( !type.Eq(CBotTypArrayPointer) &&
|
||||||
!type.Eq(CBotTypArrayBody)) assert(0);
|
!type.Eq(CBotTypArrayBody)) assert(0);
|
||||||
|
|
||||||
m_token = new CBotToken(name);
|
m_token = new CBotToken(*name);
|
||||||
m_next = nullptr;
|
m_next = nullptr;
|
||||||
m_pMyThis = nullptr;
|
m_pMyThis = nullptr;
|
||||||
m_pUserPtr = nullptr;
|
m_pUserPtr = nullptr;
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
CBotVarBoolean::CBotVarBoolean( const CBotToken* name )
|
CBotVarBoolean::CBotVarBoolean( const CBotToken* name )
|
||||||
{
|
{
|
||||||
m_token = new CBotToken(name);
|
m_token = new CBotToken(*name);
|
||||||
m_next = nullptr;
|
m_next = nullptr;
|
||||||
m_pMyThis = nullptr;
|
m_pMyThis = nullptr;
|
||||||
m_pUserPtr = nullptr;
|
m_pUserPtr = nullptr;
|
||||||
|
|
|
@ -45,7 +45,7 @@ CBotVarClass::CBotVarClass( const CBotToken* name, const CBotTypResult& type)
|
||||||
!type.Eq(CBotTypArrayPointer) &&
|
!type.Eq(CBotTypArrayPointer) &&
|
||||||
!type.Eq(CBotTypArrayBody)) assert(0);
|
!type.Eq(CBotTypArrayBody)) assert(0);
|
||||||
|
|
||||||
m_token = new CBotToken(name);
|
m_token = new CBotToken(*name);
|
||||||
m_next = nullptr;
|
m_next = nullptr;
|
||||||
m_pMyThis = nullptr;
|
m_pMyThis = nullptr;
|
||||||
m_pUserPtr = OBJECTCREATED;//nullptr;
|
m_pUserPtr = OBJECTCREATED;//nullptr;
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
CBotVarFloat::CBotVarFloat( const CBotToken* name )
|
CBotVarFloat::CBotVarFloat( const CBotToken* name )
|
||||||
{
|
{
|
||||||
m_token = new CBotToken(name);
|
m_token = new CBotToken(*name);
|
||||||
m_next = nullptr;
|
m_next = nullptr;
|
||||||
m_pMyThis = nullptr;
|
m_pMyThis = nullptr;
|
||||||
m_pUserPtr = nullptr;
|
m_pUserPtr = nullptr;
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
CBotVarInt::CBotVarInt( const CBotToken* name )
|
CBotVarInt::CBotVarInt( const CBotToken* name )
|
||||||
{
|
{
|
||||||
m_token = new CBotToken(name);
|
m_token = new CBotToken(*name);
|
||||||
m_next = nullptr;
|
m_next = nullptr;
|
||||||
m_pMyThis = nullptr;
|
m_pMyThis = nullptr;
|
||||||
m_pUserPtr = nullptr;
|
m_pUserPtr = nullptr;
|
||||||
|
|
|
@ -40,7 +40,7 @@ CBotVarPointer::CBotVarPointer(const CBotToken* name, CBotTypResult& type )
|
||||||
!type.Eq(CBotTypClass) && // for convenience accepts Class and Intrinsic
|
!type.Eq(CBotTypClass) && // for convenience accepts Class and Intrinsic
|
||||||
!type.Eq(CBotTypIntrinsic) ) assert(0);
|
!type.Eq(CBotTypIntrinsic) ) assert(0);
|
||||||
|
|
||||||
m_token = new CBotToken(name);
|
m_token = new CBotToken(*name);
|
||||||
m_next = nullptr;
|
m_next = nullptr;
|
||||||
m_pMyThis = nullptr;
|
m_pMyThis = nullptr;
|
||||||
m_pUserPtr = nullptr;
|
m_pUserPtr = nullptr;
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
CBotVarString::CBotVarString( const CBotToken* name )
|
CBotVarString::CBotVarString( const CBotToken* name )
|
||||||
{
|
{
|
||||||
m_token = new CBotToken(name);
|
m_token = new CBotToken(*name);
|
||||||
m_next = nullptr;
|
m_next = nullptr;
|
||||||
m_pMyThis = nullptr;
|
m_pMyThis = nullptr;
|
||||||
m_pUserPtr = nullptr;
|
m_pUserPtr = nullptr;
|
||||||
|
|
|
@ -1,3 +1,22 @@
|
||||||
|
/*
|
||||||
|
* 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
|
||||||
|
*/
|
||||||
|
|
||||||
#include "CBot/stdlib/Compilation.h"
|
#include "CBot/stdlib/Compilation.h"
|
||||||
|
|
||||||
#include "CBot/CBot.h"
|
#include "CBot/CBot.h"
|
||||||
|
|
|
@ -1,3 +1,22 @@
|
||||||
|
/*
|
||||||
|
* 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
|
#pragma once
|
||||||
|
|
||||||
#include "CBot/CBotTypResult.h"
|
#include "CBot/CBotTypResult.h"
|
||||||
|
|
|
@ -1,3 +1,22 @@
|
||||||
|
/*
|
||||||
|
* 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
|
||||||
|
*/
|
||||||
|
|
||||||
#include "CBot/stdlib/stdlib.h"
|
#include "CBot/stdlib/stdlib.h"
|
||||||
|
|
||||||
#include "CBot/CBot.h"
|
#include "CBot/CBot.h"
|
||||||
|
|
|
@ -1,8 +1,28 @@
|
||||||
|
/*
|
||||||
|
* 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
|
||||||
|
*/
|
||||||
|
|
||||||
#include "CBot/stdlib/stdlib.h"
|
#include "CBot/stdlib/stdlib.h"
|
||||||
|
|
||||||
#include "CBot/CBot.h"
|
#include "CBot/CBot.h"
|
||||||
|
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
|
const float PI = 3.14159265358979323846f;
|
||||||
|
|
||||||
// Instruction "sin(degrees)".
|
// Instruction "sin(degrees)".
|
||||||
|
|
||||||
|
@ -11,7 +31,7 @@ bool rSin(CBotVar* var, CBotVar* result, int& exception, void* user)
|
||||||
float value;
|
float value;
|
||||||
|
|
||||||
value = var->GetValFloat();
|
value = var->GetValFloat();
|
||||||
result->SetValFloat(sinf(value*M_PI/180.0f));
|
result->SetValFloat(sinf(value*PI/180.0f));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,7 +42,7 @@ bool rCos(CBotVar* var, CBotVar* result, int& exception, void* user)
|
||||||
float value;
|
float value;
|
||||||
|
|
||||||
value = var->GetValFloat();
|
value = var->GetValFloat();
|
||||||
result->SetValFloat(cosf(value*M_PI/180.0f));
|
result->SetValFloat(cosf(value*PI/180.0f));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -33,7 +53,7 @@ bool rTan(CBotVar* var, CBotVar* result, int& exception, void* user)
|
||||||
float value;
|
float value;
|
||||||
|
|
||||||
value = var->GetValFloat();
|
value = var->GetValFloat();
|
||||||
result->SetValFloat(tanf(value*M_PI/180.0f));
|
result->SetValFloat(tanf(value*PI/180.0f));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -44,7 +64,7 @@ bool raSin(CBotVar* var, CBotVar* result, int& exception, void* user)
|
||||||
float value;
|
float value;
|
||||||
|
|
||||||
value = var->GetValFloat();
|
value = var->GetValFloat();
|
||||||
result->SetValFloat(asinf(value)*180.0f/M_PI);
|
result->SetValFloat(asinf(value)*180.0f/PI);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -55,7 +75,7 @@ bool raCos(CBotVar* var, CBotVar* result, int& exception, void* user)
|
||||||
float value;
|
float value;
|
||||||
|
|
||||||
value = var->GetValFloat();
|
value = var->GetValFloat();
|
||||||
result->SetValFloat(acosf(value)*180.0f/M_PI);
|
result->SetValFloat(acosf(value)*180.0f/PI);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -66,7 +86,7 @@ bool raTan(CBotVar* var, CBotVar* result, int& exception, void* user)
|
||||||
float value;
|
float value;
|
||||||
|
|
||||||
value = var->GetValFloat();
|
value = var->GetValFloat();
|
||||||
result->SetValFloat(atanf(value)*180.0f/M_PI);
|
result->SetValFloat(atanf(value)*180.0f/PI);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -78,7 +98,7 @@ bool raTan2(CBotVar* var, CBotVar* result, int& exception, void* user)
|
||||||
var = var->GetNext();
|
var = var->GetNext();
|
||||||
float x = var->GetValFloat();
|
float x = var->GetValFloat();
|
||||||
|
|
||||||
result->SetValFloat(atan2(y, x) * 180.0f / M_PI);
|
result->SetValFloat(atan2(y, x) * 180.0f / PI);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -17,17 +17,12 @@
|
||||||
* along with this program. If not, see http://gnu.org/licenses
|
* along with this program. If not, see http://gnu.org/licenses
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Modules inlcude
|
|
||||||
#include "CBot/stdlib/stdlib.h"
|
#include "CBot/stdlib/stdlib.h"
|
||||||
|
|
||||||
#include "CBot/CBot.h"
|
#include "CBot/CBot.h"
|
||||||
|
|
||||||
#include "CBot/CBotUtils.h"
|
#include "CBot/CBotUtils.h"
|
||||||
|
|
||||||
|
|
||||||
// Local include
|
|
||||||
|
|
||||||
// Global include
|
|
||||||
#include <boost/algorithm/string.hpp>
|
#include <boost/algorithm/string.hpp>
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,3 +1,22 @@
|
||||||
|
/*
|
||||||
|
* 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
|
#pragma once
|
||||||
|
|
||||||
#include "CBot/stdlib/stdlib_public.h"
|
#include "CBot/stdlib/stdlib_public.h"
|
||||||
|
|
|
@ -1,3 +1,22 @@
|
||||||
|
/*
|
||||||
|
* 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
|
#pragma once
|
||||||
|
|
||||||
#include "CBot/stdlib/Compilation.h"
|
#include "CBot/stdlib/Compilation.h"
|
||||||
|
|
Loading…
Reference in New Issue