2022-03-17 22:15:35 +01:00
|
|
|
#ifndef ROOM_MANAGER_EDITOR_PLUGIN_H
|
|
|
|
#define ROOM_MANAGER_EDITOR_PLUGIN_H
|
2023-12-17 22:50:00 +01:00
|
|
|
|
2022-03-15 13:29:32 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* room_manager_editor_plugin.h */
|
|
|
|
/*************************************************************************/
|
2023-12-17 22:50:00 +01:00
|
|
|
/* This file is part of: */
|
|
|
|
/* PANDEMONIUM ENGINE */
|
|
|
|
/* https://github.com/Relintai/pandemonium_engine */
|
2022-03-15 13:29:32 +01:00
|
|
|
/*************************************************************************/
|
2023-12-17 22:50:00 +01:00
|
|
|
/* Copyright (c) 2022-present Péter Magyar. */
|
2022-03-15 13:29:32 +01:00
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2023-12-17 22:50:00 +01:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
2022-03-15 13:29:32 +01:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
|
|
|
#include "editor/editor_plugin.h"
|
2022-03-18 21:48:35 +01:00
|
|
|
|
2022-08-17 13:45:14 +02:00
|
|
|
#include "core/object/object.h"
|
2022-08-17 14:19:55 +02:00
|
|
|
#include "core/string/ustring.h"
|
2023-12-17 22:50:00 +01:00
|
|
|
#include "scene/resources/material/material.h"
|
2022-03-18 20:18:56 +01:00
|
|
|
|
|
|
|
class EditorNode;
|
|
|
|
class Occluder;
|
|
|
|
class Portal;
|
|
|
|
class Room;
|
|
|
|
class RoomManager;
|
|
|
|
class ToolButton;
|
|
|
|
class UndoRedo;
|
2023-09-03 13:35:55 +02:00
|
|
|
class HBoxContainer;
|
2022-03-15 13:29:32 +01:00
|
|
|
|
|
|
|
class RoomManagerEditorPlugin : public EditorPlugin {
|
|
|
|
GDCLASS(RoomManagerEditorPlugin, EditorPlugin);
|
|
|
|
|
|
|
|
RoomManager *_room_manager;
|
|
|
|
|
2023-09-03 13:35:55 +02:00
|
|
|
HBoxContainer *button_container;
|
2022-03-15 13:29:32 +01:00
|
|
|
ToolButton *button_flip_portals;
|
|
|
|
EditorNode *editor;
|
|
|
|
|
|
|
|
void _flip_portals();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual String get_name() const { return "RoomManager"; }
|
|
|
|
bool has_main_screen() const { return false; }
|
|
|
|
virtual void edit(Object *p_object);
|
|
|
|
virtual bool handles(Object *p_object) const;
|
|
|
|
virtual void make_visible(bool p_visible);
|
|
|
|
|
|
|
|
RoomManagerEditorPlugin(EditorNode *p_node);
|
|
|
|
~RoomManagerEditorPlugin();
|
|
|
|
};
|
|
|
|
|
|
|
|
///////////////////////
|
|
|
|
|
|
|
|
class RoomEditorPlugin : public EditorPlugin {
|
|
|
|
GDCLASS(RoomEditorPlugin, EditorPlugin);
|
|
|
|
|
|
|
|
Room *_room;
|
2023-09-03 13:35:55 +02:00
|
|
|
|
|
|
|
HBoxContainer *button_container;
|
2022-03-15 13:29:32 +01:00
|
|
|
ToolButton *button_generate;
|
|
|
|
EditorNode *editor;
|
|
|
|
UndoRedo *undo_redo;
|
|
|
|
|
|
|
|
void _generate_points();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual String get_name() const { return "Room"; }
|
|
|
|
bool has_main_screen() const { return false; }
|
|
|
|
virtual void edit(Object *p_object);
|
|
|
|
virtual bool handles(Object *p_object) const;
|
|
|
|
virtual void make_visible(bool p_visible);
|
|
|
|
|
|
|
|
RoomEditorPlugin(EditorNode *p_node);
|
|
|
|
~RoomEditorPlugin();
|
|
|
|
};
|
|
|
|
|
|
|
|
///////////////////////
|
|
|
|
|
|
|
|
class PortalEditorPlugin : public EditorPlugin {
|
|
|
|
GDCLASS(PortalEditorPlugin, EditorPlugin);
|
|
|
|
|
|
|
|
Portal *_portal;
|
2023-09-03 13:35:55 +02:00
|
|
|
|
|
|
|
HBoxContainer *button_container;
|
2022-03-15 13:29:32 +01:00
|
|
|
ToolButton *button_flip;
|
|
|
|
EditorNode *editor;
|
|
|
|
|
|
|
|
void _flip_portal();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual String get_name() const { return "Portal"; }
|
|
|
|
bool has_main_screen() const { return false; }
|
|
|
|
virtual void edit(Object *p_object);
|
|
|
|
virtual bool handles(Object *p_object) const;
|
|
|
|
virtual void make_visible(bool p_visible);
|
|
|
|
|
|
|
|
PortalEditorPlugin(EditorNode *p_node);
|
|
|
|
~PortalEditorPlugin();
|
|
|
|
};
|
|
|
|
|
|
|
|
///////////////////////
|
|
|
|
|
|
|
|
class OccluderEditorPlugin : public EditorPlugin {
|
|
|
|
GDCLASS(OccluderEditorPlugin, EditorPlugin);
|
|
|
|
|
|
|
|
Occluder *_occluder;
|
2023-09-03 13:35:55 +02:00
|
|
|
|
|
|
|
HBoxContainer *button_container;
|
2022-03-15 13:29:32 +01:00
|
|
|
ToolButton *button_center;
|
|
|
|
EditorNode *editor;
|
|
|
|
UndoRedo *undo_redo;
|
|
|
|
|
|
|
|
void _center();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual String get_name() const { return "Occluder"; }
|
|
|
|
bool has_main_screen() const { return false; }
|
|
|
|
virtual void edit(Object *p_object);
|
|
|
|
virtual bool handles(Object *p_object) const;
|
|
|
|
virtual void make_visible(bool p_visible);
|
|
|
|
|
|
|
|
OccluderEditorPlugin(EditorNode *p_node);
|
|
|
|
~OccluderEditorPlugin();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|