2021-07-14 22:16:48 +02:00
/*************************************************************************/
/* export_plugin.h */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
2022-01-03 21:27:34 +01:00
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
2021-07-14 22:16:48 +02: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. */
/*************************************************************************/
2022-08-28 20:27:45 +02:00
# ifndef WEB_EXPORT_PLUGIN_H
# define WEB_EXPORT_PLUGIN_H
2021-07-14 22:16:48 +02:00
2022-02-12 02:46:22 +01:00
# include "core/config/project_settings.h"
2021-07-14 22:16:48 +02:00
# include "core/io/image_loader.h"
2022-09-07 00:46:12 +02:00
# include "core/io/stream_peer_tls.h"
2021-07-14 22:16:48 +02:00
# include "core/io/tcp_server.h"
# include "core/io/zip_io.h"
2022-02-14 14:00:03 +01:00
# include "editor/editor_node.h"
2022-07-17 19:24:37 +02:00
# include "editor/export/editor_export_platform.h"
2021-07-14 22:16:48 +02:00
# include "main/splash.gen.h"
2022-08-28 20:27:45 +02:00
# include "platform/web/logo.gen.h"
# include "platform/web/run_icon.gen.h"
2021-07-14 22:16:48 +02:00
2022-08-28 20:27:45 +02:00
# include "editor_http_server.h"
2021-07-14 22:16:48 +02:00
2022-08-28 20:27:45 +02:00
class EditorExportPlatformWeb : public EditorExportPlatform {
GDCLASS ( EditorExportPlatformWeb , EditorExportPlatform ) ;
2021-07-14 22:16:48 +02:00
Ref < ImageTexture > logo ;
Ref < ImageTexture > run_icon ;
Ref < ImageTexture > stop_icon ;
int menu_options = 0 ;
Ref < EditorHTTPServer > server ;
bool server_quit = false ;
Mutex server_lock ;
Thread server_thread ;
2022-08-29 15:56:28 +02:00
String _get_template_name ( bool p_extension , bool p_debug ) const {
String name = " web " ;
if ( p_extension ) {
name + = " _dlink " ;
2021-07-14 22:16:48 +02:00
}
if ( p_debug ) {
name + = " _debug.zip " ;
} else {
name + = " _release.zip " ;
}
return name ;
}
Ref < Image > _get_project_icon ( ) const {
Ref < Image > icon ;
icon . instantiate ( ) ;
const String icon_path = String ( GLOBAL_GET ( " application/config/icon " ) ) . strip_edges ( ) ;
if ( icon_path . is_empty ( ) | | ImageLoader : : load_image ( icon_path , icon ) ! = OK ) {
2022-02-06 15:53:53 +01:00
return EditorNode : : get_singleton ( ) - > get_editor_theme ( ) - > get_icon ( SNAME ( " DefaultProjectIcon " ) , SNAME ( " EditorIcons " ) ) - > get_image ( ) ;
2021-07-14 22:16:48 +02:00
}
return icon ;
}
Ref < Image > _get_project_splash ( ) const {
Ref < Image > splash ;
splash . instantiate ( ) ;
const String splash_path = String ( GLOBAL_GET ( " application/boot_splash/image " ) ) . strip_edges ( ) ;
if ( splash_path . is_empty ( ) | | ImageLoader : : load_image ( splash_path , splash ) ! = OK ) {
return Ref < Image > ( memnew ( Image ( boot_splash_png ) ) ) ;
}
return splash ;
}
Error _extract_template ( const String & p_template , const String & p_dir , const String & p_name , bool pwa ) ;
2022-05-13 15:04:37 +02:00
void _replace_strings ( HashMap < String , String > p_replaces , Vector < uint8_t > & r_template ) ;
2021-07-14 22:16:48 +02:00
void _fix_html ( Vector < uint8_t > & p_html , const Ref < EditorExportPreset > & p_preset , const String & p_name , bool p_debug , int p_flags , const Vector < SharedObject > p_shared_objects , const Dictionary & p_file_sizes ) ;
Error _add_manifest_icon ( const String & p_path , const String & p_icon , int p_size , Array & r_arr ) ;
Error _build_pwa ( const Ref < EditorExportPreset > & p_preset , const String p_path , const Vector < SharedObject > & p_shared_objects ) ;
Error _write_or_error ( const uint8_t * p_content , int p_len , String p_path ) ;
static void _server_thread_poll ( void * data ) ;
public :
2022-07-28 00:34:12 +02:00
virtual void get_preset_features ( const Ref < EditorExportPreset > & p_preset , List < String > * r_features ) const override ;
2021-07-14 22:16:48 +02:00
virtual void get_export_options ( List < ExportOption > * r_options ) override ;
virtual String get_name ( ) const override ;
virtual String get_os_name ( ) const override ;
virtual Ref < Texture2D > get_logo ( ) const override ;
2022-07-17 21:26:03 +02:00
virtual bool has_valid_export_configuration ( const Ref < EditorExportPreset > & p_preset , String & r_error , bool & r_missing_templates ) const override ;
virtual bool has_valid_project_configuration ( const Ref < EditorExportPreset > & p_preset , String & r_error ) const override ;
2021-07-14 22:16:48 +02:00
virtual List < String > get_binary_extensions ( const Ref < EditorExportPreset > & p_preset ) const override ;
virtual Error export_project ( const Ref < EditorExportPreset > & p_preset , bool p_debug , const String & p_path , int p_flags = 0 ) override ;
virtual bool poll_export ( ) override ;
virtual int get_options_count ( ) const override ;
virtual String get_option_label ( int p_index ) const override { return p_index ? TTR ( " Stop HTTP Server " ) : TTR ( " Run in Browser " ) ; }
virtual String get_option_tooltip ( int p_index ) const override { return p_index ? TTR ( " Stop HTTP Server " ) : TTR ( " Run exported HTML in the system's default browser. " ) ; }
virtual Ref < ImageTexture > get_option_icon ( int p_index ) const override ;
virtual Error run ( const Ref < EditorExportPreset > & p_preset , int p_option , int p_debug_flags ) override ;
virtual Ref < Texture2D > get_run_icon ( ) const override ;
2022-07-28 00:34:12 +02:00
virtual void get_platform_features ( List < String > * r_features ) const override {
2021-07-14 22:16:48 +02:00
r_features - > push_back ( " web " ) ;
2021-03-26 15:33:36 +01:00
r_features - > push_back ( get_os_name ( ) . to_lower ( ) ) ;
2021-07-14 22:16:48 +02:00
}
2022-05-19 17:00:06 +02:00
virtual void resolve_platform_feature_priorities ( const Ref < EditorExportPreset > & p_preset , HashSet < String > & p_features ) override {
2021-07-14 22:16:48 +02:00
}
String get_debug_protocol ( ) const override { return " ws:// " ; }
2022-08-28 20:27:45 +02:00
EditorExportPlatformWeb ( ) ;
~ EditorExportPlatformWeb ( ) ;
2021-07-14 22:16:48 +02:00
} ;
2022-08-28 20:27:45 +02:00
# endif // WEB_EXPORT_PLUGIN_H