75 lines
2.6 KiB
C++
75 lines
2.6 KiB
C++
/*
|
|
* This file is part of the Colobot: Gold Edition source code
|
|
* Copyright (C) 2001-2023, 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
|
|
|
|
#include "object/interface/program_storage_object.h"
|
|
|
|
#include <glm/glm.hpp>
|
|
|
|
#include <sstream>
|
|
|
|
class CObject;
|
|
|
|
class CProgramStorageObjectImpl : public CProgramStorageObject
|
|
{
|
|
public:
|
|
explicit CProgramStorageObjectImpl(ObjectInterfaceTypes& types, CObject* object);
|
|
virtual ~CProgramStorageObjectImpl();
|
|
|
|
bool IntroduceVirus() override;
|
|
void SetActiveVirus(bool bActive) override;
|
|
bool GetActiveVirus() override;
|
|
|
|
bool ReadProgram(Program* program, const std::string& filename) override;
|
|
bool WriteProgram(Program* program, const std::string& filename) override;
|
|
bool GetCompile(Program* program) override;
|
|
|
|
Program* AddProgram() override;
|
|
void AddProgram(std::unique_ptr<Program> program) override;
|
|
void RemoveProgram(Program* program) override;
|
|
Program* CloneProgram(Program* program) override;
|
|
|
|
std::vector<std::unique_ptr<Program>>& GetPrograms() override;
|
|
int GetProgramCount() override;
|
|
Program* GetProgram(int index) override;
|
|
Program* GetOrAddProgram(int index) override;
|
|
int GetProgramIndex(Program* program) override;
|
|
|
|
void SetProgramStorageIndex(int programStorageIndex) override;
|
|
int GetProgramStorageIndex() override;
|
|
|
|
void SaveAllUserPrograms(const std::string& userSource) override;
|
|
void LoadAllProgramsForLevel(CLevelParserLine* levelSource, const std::string& userSource, bool loadSoluce) override;
|
|
|
|
void SaveAllProgramsForSavedScene(CLevelParserLine* levelSourceLine, const std::string& levelSource) override;
|
|
void LoadAllProgramsForSavedScene(CLevelParserLine* levelSourceLine, const std::string& levelSource) override;
|
|
|
|
private:
|
|
CObject* m_object;
|
|
|
|
private:
|
|
std::vector<std::unique_ptr<Program>> m_program;
|
|
|
|
bool m_activeVirus;
|
|
|
|
int m_programStorageIndex;
|
|
bool m_allowProgramSave;
|
|
};
|