2014-02-10 09:10:30 +08:00
|
|
|
/*************************************************************************/
|
2017-09-01 22:07:55 +08:00
|
|
|
/* editor_export.h */
|
2014-02-10 09:10:30 +08:00
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 20:16:55 +08:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 09:10:30 +08:00
|
|
|
/*************************************************************************/
|
2022-01-04 04:27:34 +08:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2014-02-10 09:10:30 +08: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. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 07:50:27 +08:00
|
|
|
|
2017-02-20 10:19:30 +08:00
|
|
|
#ifndef EDITOR_EXPORT_H
|
|
|
|
#define EDITOR_EXPORT_H
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2021-06-11 20:51:48 +08:00
|
|
|
#include "core/io/dir_access.h"
|
2020-11-08 06:33:38 +08:00
|
|
|
#include "core/io/resource.h"
|
2014-02-10 09:10:30 +08:00
|
|
|
#include "scene/main/node.h"
|
2017-02-20 10:19:30 +08:00
|
|
|
#include "scene/main/timer.h"
|
2017-03-05 23:44:50 +08:00
|
|
|
#include "scene/resources/texture.h"
|
2014-02-10 09:10:30 +08:00
|
|
|
|
|
|
|
class FileAccess;
|
2017-02-20 10:19:30 +08:00
|
|
|
class EditorExportPlatform;
|
2017-02-21 11:05:15 +08:00
|
|
|
class EditorFileSystemDirectory;
|
2018-10-01 22:46:50 +08:00
|
|
|
struct EditorProgress;
|
2016-02-28 10:10:44 +08:00
|
|
|
|
2021-06-05 00:03:15 +08:00
|
|
|
class EditorExportPreset : public RefCounted {
|
|
|
|
GDCLASS(EditorExportPreset, RefCounted);
|
2019-03-20 02:35:57 +08:00
|
|
|
|
2014-02-10 09:10:30 +08:00
|
|
|
public:
|
2017-02-13 09:51:16 +08:00
|
|
|
enum ExportFilter {
|
2017-02-20 10:19:30 +08:00
|
|
|
EXPORT_ALL_RESOURCES,
|
|
|
|
EXPORT_SELECTED_SCENES,
|
|
|
|
EXPORT_SELECTED_RESOURCES,
|
2020-11-15 08:54:24 +08:00
|
|
|
EXCLUDE_SELECTED_RESOURCES,
|
2017-02-13 09:51:16 +08:00
|
|
|
};
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2018-12-24 02:28:29 +08:00
|
|
|
enum ScriptExportMode {
|
|
|
|
MODE_SCRIPT_TEXT,
|
|
|
|
MODE_SCRIPT_COMPILED,
|
|
|
|
};
|
|
|
|
|
2017-02-13 09:51:16 +08:00
|
|
|
private:
|
2017-02-20 10:19:30 +08:00
|
|
|
Ref<EditorExportPlatform> platform;
|
2020-05-12 23:01:17 +08:00
|
|
|
ExportFilter export_filter = EXPORT_ALL_RESOURCES;
|
2017-02-20 10:19:30 +08:00
|
|
|
String include_filter;
|
|
|
|
String exclude_filter;
|
2018-10-27 21:53:05 +08:00
|
|
|
String export_path;
|
2017-02-20 10:19:30 +08:00
|
|
|
|
2017-02-13 09:51:16 +08:00
|
|
|
String exporter;
|
|
|
|
Set<String> selected_files;
|
2020-05-12 23:01:17 +08:00
|
|
|
bool runnable = false;
|
2017-02-20 10:19:30 +08:00
|
|
|
|
2017-03-05 23:44:50 +08:00
|
|
|
friend class EditorExport;
|
|
|
|
friend class EditorExportPlatform;
|
2014-02-24 20:53:33 +08:00
|
|
|
|
2017-02-13 09:51:16 +08:00
|
|
|
List<PropertyInfo> properties;
|
2017-03-05 23:44:50 +08:00
|
|
|
Map<StringName, Variant> values;
|
2014-02-24 20:53:33 +08:00
|
|
|
|
2017-02-20 10:19:30 +08:00
|
|
|
String name;
|
2017-03-05 23:44:50 +08:00
|
|
|
|
2017-07-20 04:00:46 +08:00
|
|
|
String custom_features;
|
|
|
|
|
2020-04-29 01:51:29 +08:00
|
|
|
String enc_in_filters;
|
|
|
|
String enc_ex_filters;
|
|
|
|
bool enc_pck = false;
|
|
|
|
bool enc_directory = false;
|
|
|
|
|
2020-05-12 23:01:17 +08:00
|
|
|
int script_mode = MODE_SCRIPT_COMPILED;
|
2018-12-24 02:28:29 +08:00
|
|
|
String script_key;
|
|
|
|
|
2014-02-24 20:53:33 +08:00
|
|
|
protected:
|
2017-03-05 23:44:50 +08:00
|
|
|
bool _set(const StringName &p_name, const Variant &p_value);
|
|
|
|
bool _get(const StringName &p_name, Variant &r_ret) const;
|
|
|
|
void _get_property_list(List<PropertyInfo> *p_list) const;
|
2014-02-24 20:53:33 +08:00
|
|
|
|
|
|
|
public:
|
2017-02-21 11:05:15 +08:00
|
|
|
Ref<EditorExportPlatform> get_platform() const;
|
2017-03-28 09:21:21 +08:00
|
|
|
|
2017-03-05 23:44:50 +08:00
|
|
|
bool has(const StringName &p_property) const { return values.has(p_property); }
|
2017-02-20 10:19:30 +08:00
|
|
|
|
2020-06-10 17:41:42 +08:00
|
|
|
void update_files_to_export();
|
|
|
|
|
2017-02-20 10:19:30 +08:00
|
|
|
Vector<String> get_files_to_export() const;
|
|
|
|
|
2017-03-05 23:44:50 +08:00
|
|
|
void add_export_file(const String &p_path);
|
|
|
|
void remove_export_file(const String &p_path);
|
|
|
|
bool has_export_file(const String &p_path);
|
2017-02-20 10:19:30 +08:00
|
|
|
|
2017-03-05 23:44:50 +08:00
|
|
|
void set_name(const String &p_name);
|
2017-02-20 10:19:30 +08:00
|
|
|
String get_name() const;
|
|
|
|
|
|
|
|
void set_runnable(bool p_enable);
|
|
|
|
bool is_runnable() const;
|
|
|
|
|
|
|
|
void set_export_filter(ExportFilter p_filter);
|
|
|
|
ExportFilter get_export_filter() const;
|
|
|
|
|
2017-03-05 23:44:50 +08:00
|
|
|
void set_include_filter(const String &p_include);
|
2017-02-20 10:19:30 +08:00
|
|
|
String get_include_filter() const;
|
2017-02-13 09:51:16 +08:00
|
|
|
|
2017-03-05 23:44:50 +08:00
|
|
|
void set_exclude_filter(const String &p_exclude);
|
2017-02-20 10:19:30 +08:00
|
|
|
String get_exclude_filter() const;
|
|
|
|
|
2017-07-20 04:00:46 +08:00
|
|
|
void set_custom_features(const String &p_custom_features);
|
|
|
|
String get_custom_features() const;
|
|
|
|
|
2018-10-27 21:53:05 +08:00
|
|
|
void set_export_path(const String &p_path);
|
|
|
|
String get_export_path() const;
|
|
|
|
|
2020-04-29 01:51:29 +08:00
|
|
|
void set_enc_in_filter(const String &p_filter);
|
|
|
|
String get_enc_in_filter() const;
|
|
|
|
|
|
|
|
void set_enc_ex_filter(const String &p_filter);
|
|
|
|
String get_enc_ex_filter() const;
|
|
|
|
|
|
|
|
void set_enc_pck(bool p_enabled);
|
|
|
|
bool get_enc_pck() const;
|
|
|
|
|
|
|
|
void set_enc_directory(bool p_enabled);
|
|
|
|
bool get_enc_directory() const;
|
|
|
|
|
2018-12-24 02:28:29 +08:00
|
|
|
void set_script_export_mode(int p_mode);
|
|
|
|
int get_script_export_mode() const;
|
|
|
|
|
|
|
|
void set_script_encryption_key(const String &p_key);
|
|
|
|
String get_script_encryption_key() const;
|
|
|
|
|
2017-03-05 23:44:50 +08:00
|
|
|
const List<PropertyInfo> &get_properties() const { return properties; }
|
2014-02-24 20:53:33 +08:00
|
|
|
|
2020-05-12 23:01:17 +08:00
|
|
|
EditorExportPreset() {}
|
2014-02-24 20:53:33 +08:00
|
|
|
};
|
|
|
|
|
2017-10-02 23:01:43 +08:00
|
|
|
struct SharedObject {
|
|
|
|
String path;
|
|
|
|
Vector<String> tags;
|
2022-03-10 15:48:25 +08:00
|
|
|
String target;
|
2017-10-02 23:01:43 +08:00
|
|
|
|
2022-03-10 15:48:25 +08:00
|
|
|
SharedObject(const String &p_path, const Vector<String> &p_tags, const String &p_target) :
|
2017-12-07 04:36:34 +08:00
|
|
|
path(p_path),
|
2022-03-10 15:48:25 +08:00
|
|
|
tags(p_tags),
|
|
|
|
target(p_target) {
|
2017-10-02 23:01:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SharedObject() {}
|
|
|
|
};
|
|
|
|
|
2021-06-05 00:03:15 +08:00
|
|
|
class EditorExportPlatform : public RefCounted {
|
|
|
|
GDCLASS(EditorExportPlatform, RefCounted);
|
2014-02-10 09:10:30 +08:00
|
|
|
|
|
|
|
public:
|
2020-04-29 01:51:29 +08:00
|
|
|
typedef Error (*EditorExportSaveFunction)(void *p_userdata, const String &p_path, const Vector<uint8_t> &p_data, int p_file, int p_total, const Vector<String> &p_enc_in_filters, const Vector<String> &p_enc_ex_filters, const Vector<uint8_t> &p_key);
|
2017-10-02 23:01:43 +08:00
|
|
|
typedef Error (*EditorExportSaveSharedObject)(void *p_userdata, const SharedObject &p_so);
|
2016-04-28 08:39:52 +08:00
|
|
|
|
|
|
|
private:
|
2017-02-13 09:51:16 +08:00
|
|
|
struct SavedData {
|
2020-11-24 17:12:55 +08:00
|
|
|
uint64_t ofs = 0;
|
|
|
|
uint64_t size = 0;
|
|
|
|
bool encrypted = false;
|
2017-02-21 11:05:15 +08:00
|
|
|
Vector<uint8_t> md5;
|
|
|
|
CharString path_utf8;
|
|
|
|
|
2017-03-05 23:44:50 +08:00
|
|
|
bool operator<(const SavedData &p_data) const {
|
2017-02-21 11:05:15 +08:00
|
|
|
return path_utf8 < p_data.path_utf8;
|
|
|
|
}
|
2014-02-10 09:10:30 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct PackData {
|
2022-03-23 17:08:58 +08:00
|
|
|
Ref<FileAccess> f;
|
2017-02-13 09:51:16 +08:00
|
|
|
Vector<SavedData> file_ofs;
|
2020-11-24 17:12:55 +08:00
|
|
|
EditorProgress *ep = nullptr;
|
|
|
|
Vector<SharedObject> *so_files = nullptr;
|
2014-02-10 09:10:30 +08:00
|
|
|
};
|
|
|
|
|
2015-12-13 12:08:36 +08:00
|
|
|
struct ZipData {
|
2020-11-24 17:12:55 +08:00
|
|
|
void *zip = nullptr;
|
|
|
|
EditorProgress *ep = nullptr;
|
2015-12-13 12:08:36 +08:00
|
|
|
};
|
|
|
|
|
2017-10-02 23:01:43 +08:00
|
|
|
struct FeatureContainers {
|
|
|
|
Set<String> features;
|
2020-02-18 05:06:54 +08:00
|
|
|
Vector<String> features_pv;
|
2017-10-02 23:01:43 +08:00
|
|
|
};
|
|
|
|
|
2017-03-05 23:44:50 +08:00
|
|
|
void _export_find_resources(EditorFileSystemDirectory *p_dir, Set<String> &p_paths);
|
|
|
|
void _export_find_dependencies(const String &p_path, Set<String> &p_paths);
|
2017-02-21 11:05:15 +08:00
|
|
|
|
2017-02-13 09:51:16 +08:00
|
|
|
void gen_debug_flags(Vector<String> &r_flags, int p_flags);
|
2020-04-29 01:51:29 +08:00
|
|
|
static Error _save_pack_file(void *p_userdata, const String &p_path, const Vector<uint8_t> &p_data, int p_file, int p_total, const Vector<String> &p_enc_in_filters, const Vector<String> &p_enc_ex_filters, const Vector<uint8_t> &p_key);
|
|
|
|
static Error _save_zip_file(void *p_userdata, const String &p_path, const Vector<uint8_t> &p_data, int p_file, int p_total, const Vector<String> &p_enc_in_filters, const Vector<String> &p_enc_ex_filters, const Vector<uint8_t> &p_key);
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2022-03-23 17:08:58 +08:00
|
|
|
void _edit_files_with_filter(Ref<DirAccess> &da, const Vector<String> &p_filters, Set<String> &r_list, bool exclude);
|
2017-08-14 21:13:09 +08:00
|
|
|
void _edit_filter_list(Set<String> &r_list, const String &p_filter, bool exclude);
|
|
|
|
|
2017-10-02 23:01:43 +08:00
|
|
|
static Error _add_shared_object(void *p_userdata, const SharedObject &p_so);
|
|
|
|
|
2017-02-13 09:51:16 +08:00
|
|
|
protected:
|
2017-10-02 23:01:43 +08:00
|
|
|
struct ExportNotifier {
|
|
|
|
ExportNotifier(EditorExportPlatform &p_platform, const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags);
|
|
|
|
~ExportNotifier();
|
|
|
|
};
|
|
|
|
|
2022-03-10 15:48:25 +08:00
|
|
|
FeatureContainers get_feature_containers(const Ref<EditorExportPreset> &p_preset, bool p_debug);
|
2017-10-02 23:01:43 +08:00
|
|
|
|
2017-04-22 07:15:42 +08:00
|
|
|
bool exists_export_template(String template_file_name, String *err) const;
|
2020-04-02 07:20:12 +08:00
|
|
|
String find_export_template(String template_file_name, String *err = nullptr) const;
|
2017-03-24 07:14:12 +08:00
|
|
|
void gen_export_flags(Vector<String> &r_flags, int p_flags);
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2017-02-13 09:51:16 +08:00
|
|
|
public:
|
2017-07-20 04:00:46 +08:00
|
|
|
virtual void get_preset_features(const Ref<EditorExportPreset> &p_preset, List<String> *r_features) = 0;
|
|
|
|
|
2017-02-13 09:51:16 +08:00
|
|
|
struct ExportOption {
|
|
|
|
PropertyInfo option;
|
|
|
|
Variant default_value;
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2018-12-09 04:07:33 +08:00
|
|
|
ExportOption(const PropertyInfo &p_info, const Variant &p_default) :
|
|
|
|
option(p_info),
|
|
|
|
default_value(p_default) {
|
2017-03-05 23:44:50 +08:00
|
|
|
}
|
2017-02-13 09:51:16 +08:00
|
|
|
ExportOption() {}
|
|
|
|
};
|
2015-12-13 12:08:36 +08:00
|
|
|
|
2017-02-20 10:19:30 +08:00
|
|
|
virtual Ref<EditorExportPreset> create_preset();
|
|
|
|
|
2017-03-05 23:44:50 +08:00
|
|
|
virtual void get_export_options(List<ExportOption> *r_options) = 0;
|
2020-04-24 15:45:14 +08:00
|
|
|
virtual bool should_update_export_options() { return false; }
|
2021-11-15 01:02:38 +08:00
|
|
|
virtual bool get_export_option_visibility(const String &p_option, const Map<StringName, Variant> &p_options) const { return true; }
|
2017-03-28 09:21:21 +08:00
|
|
|
|
2017-07-20 04:00:46 +08:00
|
|
|
virtual String get_os_name() const = 0;
|
2017-03-05 23:44:50 +08:00
|
|
|
virtual String get_name() const = 0;
|
2019-06-12 02:43:37 +08:00
|
|
|
virtual Ref<Texture2D> get_logo() const = 0;
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2022-03-10 15:48:25 +08:00
|
|
|
Error export_project_files(const Ref<EditorExportPreset> &p_preset, bool p_debug, EditorExportSaveFunction p_func, void *p_udata, EditorExportSaveSharedObject p_so_func = nullptr);
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2022-03-10 15:48:25 +08:00
|
|
|
Error save_pack(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, Vector<SharedObject> *p_so_files = nullptr, bool p_embed = false, int64_t *r_embedded_start = nullptr, int64_t *r_embedded_size = nullptr);
|
|
|
|
Error save_zip(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path);
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2019-10-11 19:47:28 +08:00
|
|
|
virtual bool poll_export() { return false; }
|
|
|
|
virtual int get_options_count() const { return 0; }
|
|
|
|
virtual String get_options_tooltip() const { return ""; }
|
|
|
|
virtual Ref<ImageTexture> get_option_icon(int p_index) const;
|
|
|
|
virtual String get_option_label(int p_device) const { return ""; }
|
|
|
|
virtual String get_option_tooltip(int p_device) const { return ""; }
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2017-02-13 09:51:16 +08:00
|
|
|
enum DebugFlags {
|
2017-03-05 23:44:50 +08:00
|
|
|
DEBUG_FLAG_DUMB_CLIENT = 1,
|
|
|
|
DEBUG_FLAG_REMOTE_DEBUG = 2,
|
|
|
|
DEBUG_FLAG_REMOTE_DEBUG_LOCALHOST = 4,
|
|
|
|
DEBUG_FLAG_VIEW_COLLISONS = 8,
|
|
|
|
DEBUG_FLAG_VIEW_NAVIGATION = 16,
|
2014-02-10 09:10:30 +08:00
|
|
|
};
|
|
|
|
|
2017-03-24 07:14:12 +08:00
|
|
|
virtual Error run(const Ref<EditorExportPreset> &p_preset, int p_device, int p_debug_flags) { return OK; }
|
2019-06-12 02:43:37 +08:00
|
|
|
virtual Ref<Texture2D> get_run_icon() const { return get_logo(); }
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2021-12-29 09:06:12 +08:00
|
|
|
String test_etc2() const;
|
2017-03-05 23:44:50 +08:00
|
|
|
virtual bool can_export(const Ref<EditorExportPreset> &p_preset, String &r_error, bool &r_missing_templates) const = 0;
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2018-10-30 05:18:49 +08:00
|
|
|
virtual List<String> get_binary_extensions(const Ref<EditorExportPreset> &p_preset) const = 0;
|
2017-03-05 23:44:50 +08:00
|
|
|
virtual Error export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags = 0) = 0;
|
2018-04-27 05:08:19 +08:00
|
|
|
virtual Error export_pack(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags = 0);
|
|
|
|
virtual Error export_zip(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags = 0);
|
2017-07-20 04:00:46 +08:00
|
|
|
virtual void get_platform_features(List<String> *r_features) = 0;
|
2018-08-22 10:56:04 +08:00
|
|
|
virtual void resolve_platform_feature_priorities(const Ref<EditorExportPreset> &p_preset, Set<String> &p_features) = 0;
|
2020-03-16 16:37:43 +08:00
|
|
|
virtual String get_debug_protocol() const { return "tcp://"; }
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2017-02-13 09:51:16 +08:00
|
|
|
EditorExportPlatform();
|
2014-02-10 09:10:30 +08:00
|
|
|
};
|
|
|
|
|
2021-06-05 00:03:15 +08:00
|
|
|
class EditorExportPlugin : public RefCounted {
|
|
|
|
GDCLASS(EditorExportPlugin, RefCounted);
|
2017-09-15 06:38:38 +08:00
|
|
|
|
|
|
|
friend class EditorExportPlatform;
|
|
|
|
|
2018-12-24 02:28:29 +08:00
|
|
|
Ref<EditorExportPreset> export_preset;
|
|
|
|
|
2017-10-02 23:01:43 +08:00
|
|
|
Vector<SharedObject> shared_objects;
|
2017-09-15 06:38:38 +08:00
|
|
|
struct ExtraFile {
|
|
|
|
String path;
|
|
|
|
Vector<uint8_t> data;
|
2020-11-24 17:12:55 +08:00
|
|
|
bool remap = false;
|
2017-09-15 06:38:38 +08:00
|
|
|
};
|
|
|
|
Vector<ExtraFile> extra_files;
|
2022-02-15 22:56:58 +08:00
|
|
|
bool skipped = false;
|
2017-09-15 06:38:38 +08:00
|
|
|
|
2017-10-02 23:01:43 +08:00
|
|
|
Vector<String> ios_frameworks;
|
2020-08-06 01:55:29 +08:00
|
|
|
Vector<String> ios_embedded_frameworks;
|
2020-03-19 00:40:04 +08:00
|
|
|
Vector<String> ios_project_static_libs;
|
2017-10-02 23:01:43 +08:00
|
|
|
String ios_plist_content;
|
|
|
|
String ios_linker_flags;
|
|
|
|
Vector<String> ios_bundle_files;
|
|
|
|
String ios_cpp_code;
|
|
|
|
|
2021-12-18 17:21:08 +08:00
|
|
|
Vector<String> osx_plugin_files;
|
|
|
|
|
2017-09-15 06:38:38 +08:00
|
|
|
_FORCE_INLINE_ void _clear() {
|
|
|
|
shared_objects.clear();
|
|
|
|
extra_files.clear();
|
|
|
|
skipped = false;
|
|
|
|
}
|
|
|
|
|
2017-10-02 23:01:43 +08:00
|
|
|
_FORCE_INLINE_ void _export_end() {
|
|
|
|
ios_frameworks.clear();
|
2020-08-06 01:55:29 +08:00
|
|
|
ios_embedded_frameworks.clear();
|
2017-10-02 23:01:43 +08:00
|
|
|
ios_bundle_files.clear();
|
|
|
|
ios_plist_content = "";
|
|
|
|
ios_linker_flags = "";
|
|
|
|
ios_cpp_code = "";
|
2021-12-18 17:21:08 +08:00
|
|
|
osx_plugin_files.clear();
|
2017-10-02 23:01:43 +08:00
|
|
|
}
|
|
|
|
|
2020-02-18 05:06:54 +08:00
|
|
|
void _export_file_script(const String &p_path, const String &p_type, const Vector<String> &p_features);
|
|
|
|
void _export_begin_script(const Vector<String> &p_features, bool p_debug, const String &p_path, int p_flags);
|
2018-12-08 02:05:10 +08:00
|
|
|
void _export_end_script();
|
2017-09-15 06:38:38 +08:00
|
|
|
|
|
|
|
protected:
|
2018-12-24 02:28:29 +08:00
|
|
|
void set_export_preset(const Ref<EditorExportPreset> &p_preset);
|
|
|
|
Ref<EditorExportPreset> get_export_preset() const;
|
|
|
|
|
2017-09-15 06:38:38 +08:00
|
|
|
void add_file(const String &p_path, const Vector<uint8_t> &p_file, bool p_remap);
|
2022-03-10 15:48:25 +08:00
|
|
|
void add_shared_object(const String &p_path, const Vector<String> &tags, const String &p_target = String());
|
2017-10-02 23:01:43 +08:00
|
|
|
|
|
|
|
void add_ios_framework(const String &p_path);
|
2020-08-06 01:55:29 +08:00
|
|
|
void add_ios_embedded_framework(const String &p_path);
|
2020-03-19 00:40:04 +08:00
|
|
|
void add_ios_project_static_lib(const String &p_path);
|
2017-10-02 23:01:43 +08:00
|
|
|
void add_ios_plist_content(const String &p_plist_content);
|
|
|
|
void add_ios_linker_flags(const String &p_flags);
|
|
|
|
void add_ios_bundle_file(const String &p_path);
|
|
|
|
void add_ios_cpp_code(const String &p_code);
|
2021-12-18 17:21:08 +08:00
|
|
|
void add_osx_plugin_file(const String &p_path);
|
2017-10-02 23:01:43 +08:00
|
|
|
|
2017-09-15 06:38:38 +08:00
|
|
|
void skip();
|
|
|
|
|
2017-09-16 00:45:03 +08:00
|
|
|
virtual void _export_file(const String &p_path, const String &p_type, const Set<String> &p_features);
|
2017-10-02 23:01:43 +08:00
|
|
|
virtual void _export_begin(const Set<String> &p_features, bool p_debug, const String &p_path, int p_flags);
|
2017-09-15 06:38:38 +08:00
|
|
|
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2021-08-22 09:52:44 +08:00
|
|
|
GDVIRTUAL3(_export_file, String, String, Vector<String>)
|
|
|
|
GDVIRTUAL4(_export_begin, Vector<String>, bool, String, uint32_t)
|
|
|
|
GDVIRTUAL0(_export_end)
|
|
|
|
|
2017-09-15 06:38:38 +08:00
|
|
|
public:
|
2017-10-02 23:01:43 +08:00
|
|
|
Vector<String> get_ios_frameworks() const;
|
2020-08-06 01:55:29 +08:00
|
|
|
Vector<String> get_ios_embedded_frameworks() const;
|
2020-03-19 00:40:04 +08:00
|
|
|
Vector<String> get_ios_project_static_libs() const;
|
2017-10-02 23:01:43 +08:00
|
|
|
String get_ios_plist_content() const;
|
|
|
|
String get_ios_linker_flags() const;
|
|
|
|
Vector<String> get_ios_bundle_files() const;
|
|
|
|
String get_ios_cpp_code() const;
|
2021-12-18 17:21:08 +08:00
|
|
|
const Vector<String> &get_osx_plugin_files() const;
|
2017-10-02 23:01:43 +08:00
|
|
|
|
2017-09-15 06:38:38 +08:00
|
|
|
EditorExportPlugin();
|
|
|
|
};
|
|
|
|
|
2017-02-13 09:51:16 +08:00
|
|
|
class EditorExport : public Node {
|
2017-03-05 23:44:50 +08:00
|
|
|
GDCLASS(EditorExport, Node);
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2020-03-17 14:33:00 +08:00
|
|
|
Vector<Ref<EditorExportPlatform>> export_platforms;
|
|
|
|
Vector<Ref<EditorExportPreset>> export_presets;
|
|
|
|
Vector<Ref<EditorExportPlugin>> export_plugins;
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2020-04-24 15:45:14 +08:00
|
|
|
StringName _export_presets_updated;
|
|
|
|
|
2022-04-04 21:06:57 +08:00
|
|
|
Timer *save_timer = nullptr;
|
2022-02-15 22:56:58 +08:00
|
|
|
bool block_save = false;
|
2017-02-20 10:19:30 +08:00
|
|
|
|
2017-02-13 09:51:16 +08:00
|
|
|
static EditorExport *singleton;
|
2015-11-09 11:49:18 +08:00
|
|
|
|
2017-02-20 10:19:30 +08:00
|
|
|
void _save();
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2017-03-05 23:44:50 +08:00
|
|
|
protected:
|
|
|
|
friend class EditorExportPreset;
|
2017-02-20 10:19:30 +08:00
|
|
|
void save_presets();
|
2016-02-27 11:32:00 +08:00
|
|
|
|
2017-02-20 10:19:30 +08:00
|
|
|
void _notification(int p_what);
|
2014-02-10 09:10:30 +08:00
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 23:44:50 +08:00
|
|
|
public:
|
|
|
|
static EditorExport *get_singleton() { return singleton; }
|
2017-02-20 10:19:30 +08:00
|
|
|
|
2017-03-05 23:44:50 +08:00
|
|
|
void add_export_platform(const Ref<EditorExportPlatform> &p_platform);
|
2017-02-13 09:51:16 +08:00
|
|
|
int get_export_platform_count();
|
|
|
|
Ref<EditorExportPlatform> get_export_platform(int p_idx);
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2017-03-05 23:44:50 +08:00
|
|
|
void add_export_preset(const Ref<EditorExportPreset> &p_preset, int p_at_pos = -1);
|
2017-02-13 09:51:16 +08:00
|
|
|
int get_export_preset_count() const;
|
|
|
|
Ref<EditorExportPreset> get_export_preset(int p_idx);
|
|
|
|
void remove_export_preset(int p_idx);
|
2015-12-04 21:18:28 +08:00
|
|
|
|
2017-09-15 06:38:38 +08:00
|
|
|
void add_export_plugin(const Ref<EditorExportPlugin> &p_plugin);
|
|
|
|
void remove_export_plugin(const Ref<EditorExportPlugin> &p_plugin);
|
2020-03-17 14:33:00 +08:00
|
|
|
Vector<Ref<EditorExportPlugin>> get_export_plugins();
|
2017-09-15 06:38:38 +08:00
|
|
|
|
2014-02-10 09:10:30 +08:00
|
|
|
void load_config();
|
2020-04-24 15:45:14 +08:00
|
|
|
void update_export_presets();
|
2017-03-24 07:14:12 +08:00
|
|
|
bool poll_export_platforms();
|
|
|
|
|
2017-02-13 09:51:16 +08:00
|
|
|
EditorExport();
|
|
|
|
~EditorExport();
|
2014-02-10 09:10:30 +08:00
|
|
|
};
|
|
|
|
|
2017-02-20 10:19:30 +08:00
|
|
|
class EditorExportPlatformPC : public EditorExportPlatform {
|
2019-03-20 02:35:57 +08:00
|
|
|
GDCLASS(EditorExportPlatformPC, EditorExportPlatform);
|
2017-02-20 10:19:30 +08:00
|
|
|
|
2019-03-26 03:56:33 +08:00
|
|
|
private:
|
2017-02-20 10:19:30 +08:00
|
|
|
Ref<ImageTexture> logo;
|
|
|
|
String name;
|
2017-07-20 04:00:46 +08:00
|
|
|
String os_name;
|
2017-02-20 10:19:30 +08:00
|
|
|
|
2022-03-21 08:31:05 +08:00
|
|
|
int chmod_flags = -1;
|
2019-03-26 03:56:33 +08:00
|
|
|
|
2017-02-20 10:19:30 +08:00
|
|
|
public:
|
2020-07-10 18:34:39 +08:00
|
|
|
virtual void get_preset_features(const Ref<EditorExportPreset> &p_preset, List<String> *r_features) override;
|
2017-02-20 10:19:30 +08:00
|
|
|
|
2020-07-10 18:34:39 +08:00
|
|
|
virtual void get_export_options(List<ExportOption> *r_options) override;
|
2017-02-20 10:19:30 +08:00
|
|
|
|
2020-07-10 18:34:39 +08:00
|
|
|
virtual String get_name() const override;
|
|
|
|
virtual String get_os_name() const override;
|
|
|
|
virtual Ref<Texture2D> get_logo() const override;
|
2017-02-20 10:19:30 +08:00
|
|
|
|
2020-07-10 18:34:39 +08:00
|
|
|
virtual bool can_export(const Ref<EditorExportPreset> &p_preset, String &r_error, bool &r_missing_templates) const override;
|
|
|
|
virtual Error export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags = 0) override;
|
2019-10-04 23:01:13 +08:00
|
|
|
virtual Error sign_shared_object(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path);
|
2022-03-22 22:40:34 +08:00
|
|
|
virtual String get_template_file_name(const String &p_target, const String &p_arch) const = 0;
|
2017-02-20 10:19:30 +08:00
|
|
|
|
2022-05-04 17:57:21 +08:00
|
|
|
virtual Error prepare_template(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags);
|
|
|
|
virtual Error modify_template(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags) { return OK; };
|
|
|
|
virtual Error export_project_data(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags);
|
2021-12-20 17:28:54 +08:00
|
|
|
|
|
|
|
void set_extension(const String &p_extension, const String &p_feature_key = "default");
|
2017-03-05 23:44:50 +08:00
|
|
|
void set_name(const String &p_name);
|
2017-07-20 04:00:46 +08:00
|
|
|
void set_os_name(const String &p_name);
|
2017-02-20 10:19:30 +08:00
|
|
|
|
2019-06-12 02:43:37 +08:00
|
|
|
void set_logo(const Ref<Texture2D> &p_logo);
|
2017-02-20 10:19:30 +08:00
|
|
|
|
2017-07-20 04:00:46 +08:00
|
|
|
void add_platform_feature(const String &p_feature);
|
2020-07-10 18:34:39 +08:00
|
|
|
virtual void get_platform_features(List<String> *r_features) override;
|
|
|
|
virtual void resolve_platform_feature_priorities(const Ref<EditorExportPreset> &p_preset, Set<String> &p_features) override;
|
2017-07-20 04:00:46 +08:00
|
|
|
|
2017-09-18 01:40:58 +08:00
|
|
|
int get_chmod_flags() const;
|
|
|
|
void set_chmod_flags(int p_flags);
|
|
|
|
|
2022-03-21 08:31:05 +08:00
|
|
|
virtual Error fixup_embedded_pck(const String &p_path, int64_t p_embedded_start, int64_t p_embedded_size) const {
|
|
|
|
return Error::OK;
|
|
|
|
}
|
2017-02-20 10:19:30 +08:00
|
|
|
};
|
|
|
|
|
2017-12-15 19:38:24 +08:00
|
|
|
class EditorExportTextSceneToBinaryPlugin : public EditorExportPlugin {
|
2019-03-20 02:35:57 +08:00
|
|
|
GDCLASS(EditorExportTextSceneToBinaryPlugin, EditorExportPlugin);
|
2017-12-15 19:38:24 +08:00
|
|
|
|
|
|
|
public:
|
2020-07-10 18:34:39 +08:00
|
|
|
virtual void _export_file(const String &p_path, const String &p_type, const Set<String> &p_features) override;
|
2017-12-15 19:38:24 +08:00
|
|
|
EditorExportTextSceneToBinaryPlugin();
|
|
|
|
};
|
|
|
|
|
2014-02-10 09:10:30 +08:00
|
|
|
#endif // EDITOR_IMPORT_EXPORT_H
|