Path: blob/master/platform/windows/export/export_plugin.h
10278 views
/**************************************************************************/1/* export_plugin.h */2/**************************************************************************/3/* This file is part of: */4/* GODOT ENGINE */5/* https://godotengine.org */6/**************************************************************************/7/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */8/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */9/* */10/* Permission is hereby granted, free of charge, to any person obtaining */11/* a copy of this software and associated documentation files (the */12/* "Software"), to deal in the Software without restriction, including */13/* without limitation the rights to use, copy, modify, merge, publish, */14/* distribute, sublicense, and/or sell copies of the Software, and to */15/* permit persons to whom the Software is furnished to do so, subject to */16/* the following conditions: */17/* */18/* The above copyright notice and this permission notice shall be */19/* included in all copies or substantial portions of the Software. */20/* */21/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */22/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */23/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */24/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */25/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */26/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */27/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */28/**************************************************************************/2930#pragma once3132#include "core/io/file_access.h"33#include "core/os/os.h"34#include "editor/export/editor_export_platform_pc.h"35#include "editor/settings/editor_settings.h"3637// Optional environment variables for defining confidential information. If any38// of these is set, they will override the values set in the credentials file.39const String ENV_WIN_CODESIGN_ID_TYPE = "GODOT_WINDOWS_CODESIGN_IDENTITY_TYPE";40const String ENV_WIN_CODESIGN_ID = "GODOT_WINDOWS_CODESIGN_IDENTITY";41const String ENV_WIN_CODESIGN_PASS = "GODOT_WINDOWS_CODESIGN_PASSWORD";4243class EditorExportPlatformWindows : public EditorExportPlatformPC {44GDCLASS(EditorExportPlatformWindows, EditorExportPlatformPC);4546struct SSHCleanupCommand {47String host;48String port;49Vector<String> ssh_args;50String cmd_args;51bool wait = false;5253SSHCleanupCommand() {}54SSHCleanupCommand(const String &p_host, const String &p_port, const Vector<String> &p_ssh_arg, const String &p_cmd_args, bool p_wait = false) {55host = p_host;56port = p_port;57ssh_args = p_ssh_arg;58cmd_args = p_cmd_args;59wait = p_wait;60}61};6263Ref<ImageTexture> run_icon;64Ref<ImageTexture> stop_icon;6566Vector<SSHCleanupCommand> cleanup_commands;67OS::ProcessID ssh_pid = 0;68int menu_options = 0;6970Error _process_icon(const Ref<EditorExportPreset> &p_preset, const String &p_src_path, const String &p_dst_path);71Error _add_data(const Ref<EditorExportPreset> &p_preset, const String &p_path, bool p_console_icon);72Error _code_sign(const Ref<EditorExportPreset> &p_preset, const String &p_path);7374String _get_exe_arch(const String &p_path) const;7576public:77virtual Error export_project(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, BitField<EditorExportPlatform::DebugFlags> p_flags = 0) override;78virtual Error modify_template(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, BitField<EditorExportPlatform::DebugFlags> p_flags) override;79virtual Error sign_shared_object(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path) override;80virtual List<String> get_binary_extensions(const Ref<EditorExportPreset> &p_preset) const override;81virtual void get_export_options(List<ExportOption> *r_options) const override;82virtual bool has_valid_export_configuration(const Ref<EditorExportPreset> &p_preset, String &r_error, bool &r_missing_templates, bool p_debug = false) const override;83virtual bool has_valid_project_configuration(const Ref<EditorExportPreset> &p_preset, String &r_error) const override;84virtual bool get_export_option_visibility(const EditorExportPreset *p_preset, const String &p_option) const override;85virtual String get_export_option_warning(const EditorExportPreset *p_preset, const StringName &p_name) const override;8687virtual String get_template_file_name(const String &p_target, const String &p_arch) const override;88virtual Error fixup_embedded_pck(const String &p_path, int64_t p_embedded_start, int64_t p_embedded_size) override;8990virtual Ref<Texture2D> get_run_icon() const override;91virtual bool poll_export() override;92virtual Ref<Texture2D> get_option_icon(int p_index) const override;93virtual int get_options_count() const override;94virtual String get_option_label(int p_index) const override;95virtual String get_option_tooltip(int p_index) const override;96virtual Error run(const Ref<EditorExportPreset> &p_preset, int p_device, BitField<EditorExportPlatform::DebugFlags> p_debug_flags) override;97virtual void cleanup() override;9899EditorExportPlatformWindows();100};101102103