122 lines
2.9 KiB
C++
122 lines
2.9 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 <memory>
|
|
#include <string>
|
|
|
|
#include <glm/glm.hpp>
|
|
|
|
class CApplication;
|
|
class CEventQueue;
|
|
class CFileDialog;
|
|
class CRobotMain;
|
|
class CScript;
|
|
class CSettings;
|
|
class CSoundInterface;
|
|
class CPauseManager;
|
|
|
|
struct ActivePause;
|
|
struct Event;
|
|
struct Program;
|
|
|
|
namespace Gfx
|
|
{
|
|
class CCamera;
|
|
class CEngine;
|
|
|
|
enum CameraType : unsigned char;
|
|
}
|
|
|
|
namespace Ui
|
|
{
|
|
|
|
class CEdit;
|
|
class CInterface;
|
|
class CFileDialog;
|
|
|
|
|
|
class CStudio
|
|
{
|
|
public:
|
|
CStudio();
|
|
~CStudio();
|
|
|
|
bool EventProcess(const Event &event);
|
|
|
|
void StartEditScript(CScript *script, std::string name, Program* program);
|
|
bool StopEditScript(bool closeWithErrors);
|
|
|
|
void SetInfoText(std::string text, bool bClickable);
|
|
|
|
protected:
|
|
bool EventFrame(const Event &event);
|
|
void SearchToken(CEdit* edit);
|
|
void ColorizeScript(CEdit* edit);
|
|
void AdjustEditScript();
|
|
void ViewEditScript();
|
|
void UpdateFlux();
|
|
void UpdateButtons();
|
|
|
|
void StartDialog(const Event &event);
|
|
void StopDialog();
|
|
bool EventDialog(const Event &event);
|
|
|
|
protected:
|
|
Gfx::CEngine* m_engine;
|
|
CEventQueue* m_event;
|
|
CRobotMain* m_main;
|
|
Gfx::CCamera* m_camera;
|
|
CSoundInterface* m_sound;
|
|
CInterface* m_interface;
|
|
CApplication* m_app;
|
|
CPauseManager* m_pause;
|
|
CSettings* m_settings;
|
|
|
|
Program* m_program;
|
|
CScript* m_script;
|
|
Gfx::CameraType m_editCamera;
|
|
|
|
bool m_bEditMaximized;
|
|
bool m_bEditMinimized;
|
|
|
|
glm::vec2 m_editActualPos;
|
|
glm::vec2 m_editActualDim;
|
|
glm::vec2 m_editFinalPos;
|
|
glm::vec2 m_editFinalDim;
|
|
glm::vec2 m_windowPos;
|
|
glm::vec2 m_windowDim;
|
|
glm::vec2 m_dialogPos;
|
|
glm::vec2 m_dialogDim;
|
|
|
|
float m_time;
|
|
float m_fixInfoTextTime;
|
|
bool m_bRunning;
|
|
bool m_bRealTime;
|
|
ActivePause* m_editorPause = nullptr;
|
|
ActivePause* m_runningPause = nullptr;
|
|
std::string m_helpFilename;
|
|
|
|
std::unique_ptr<CFileDialog> m_fileDialog;
|
|
};
|
|
|
|
|
|
} // namespace Ui
|