2016-06-18 12:46:12 +00:00
|
|
|
/**************************************************************************/
|
2023-04-12 19:02:28 +00:00
|
|
|
/* editor_script.h */
|
2016-06-18 12:46:12 +00:00
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* 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. */
|
|
|
|
/**************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2023-04-12 19:02:28 +00:00
|
|
|
#ifndef EDITOR_SCRIPT_H
|
|
|
|
#define EDITOR_SCRIPT_H
|
2014-02-21 02:01:44 +00:00
|
|
|
|
2023-04-05 15:14:46 +00:00
|
|
|
#include "core/object/gdvirtual.gen.inc"
|
2021-06-04 16:03:15 +00:00
|
|
|
#include "core/object/ref_counted.h"
|
2022-02-14 13:00:03 +00:00
|
|
|
|
2023-04-05 15:14:46 +00:00
|
|
|
class EditorInterface;
|
2014-02-21 02:01:44 +00:00
|
|
|
class EditorNode;
|
2023-09-06 19:02:52 +00:00
|
|
|
class Node;
|
2022-02-14 13:00:03 +00:00
|
|
|
|
2021-06-04 16:03:15 +00:00
|
|
|
class EditorScript : public RefCounted {
|
|
|
|
GDCLASS(EditorScript, RefCounted);
|
2014-02-21 02:01:44 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
2023-04-12 19:02:28 +00:00
|
|
|
|
2021-08-22 01:52:44 +00:00
|
|
|
GDVIRTUAL0(_run)
|
2014-02-21 02:01:44 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2014-02-21 02:01:44 +00:00
|
|
|
void add_root_node(Node *p_node);
|
2023-04-12 19:02:28 +00:00
|
|
|
Node *get_scene() const;
|
|
|
|
EditorInterface *get_editor_interface() const;
|
|
|
|
|
|
|
|
virtual void run();
|
2014-02-21 02:01:44 +00:00
|
|
|
|
2023-04-12 19:02:28 +00:00
|
|
|
EditorScript() {}
|
2014-02-21 02:01:44 +00:00
|
|
|
};
|
|
|
|
|
2023-04-12 19:02:28 +00:00
|
|
|
#endif // EDITOR_SCRIPT_H
|