export.cpp 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. /*************************************************************************/
  2. /* export.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* http://www.godotengine.org */
  7. /*************************************************************************/
  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. /*************************************************************************/
  29. #include "version.h"
  30. #include "export.h"
  31. #include "tools/editor/editor_settings.h"
  32. #include "tools/editor/editor_import_export.h"
  33. #include "tools/editor/editor_node.h"
  34. #include "io/zip_io.h"
  35. #include "io/marshalls.h"
  36. #include "globals.h"
  37. #include "os/file_access.h"
  38. #include "os/os.h"
  39. #include "platform/javascript/logo.h"
  40. #include "string.h"
  41. class EditorExportPlatformJavaScript : public EditorExportPlatform {
  42. OBJ_TYPE( EditorExportPlatformJavaScript,EditorExportPlatform );
  43. String custom_release_package;
  44. String custom_debug_package;
  45. enum PackMode {
  46. PACK_SINGLE_FILE,
  47. PACK_MULTIPLE_FILES
  48. };
  49. PackMode pack_mode;
  50. bool show_run;
  51. int max_memory;
  52. int version_code;
  53. Ref<ImageTexture> logo;
  54. protected:
  55. bool _set(const StringName& p_name, const Variant& p_value);
  56. bool _get(const StringName& p_name,Variant &r_ret) const;
  57. void _get_property_list( List<PropertyInfo> *p_list) const;
  58. public:
  59. virtual String get_name() const { return "HTML5"; }
  60. virtual ImageCompression get_image_compression() const { return IMAGE_COMPRESSION_BC; }
  61. virtual Ref<Texture> get_logo() const { return logo; }
  62. virtual bool poll_devices() { return show_run?true:false;}
  63. virtual int get_device_count() const { return show_run?1:0; };
  64. virtual String get_device_name(int p_device) const { return "Run in Browser"; }
  65. virtual String get_device_info(int p_device) const { return "Run exported HTML in the system's default browser."; }
  66. virtual Error run(int p_device);
  67. virtual bool requieres_password(bool p_debug) const { return false; }
  68. virtual String get_binary_extension() const { return "html"; }
  69. virtual Error export_project(const String& p_path,bool p_debug,const String& p_password="");
  70. virtual bool can_export(String *r_error=NULL) const;
  71. EditorExportPlatformJavaScript();
  72. ~EditorExportPlatformJavaScript();
  73. };
  74. bool EditorExportPlatformJavaScript::_set(const StringName& p_name, const Variant& p_value) {
  75. String n=p_name;
  76. if (n=="custom_package/debug")
  77. custom_debug_package=p_value;
  78. else if (n=="custom_package/release")
  79. custom_release_package=p_value;
  80. else if (n=="browser/enable_run")
  81. show_run=p_value;
  82. else if (n=="options/memory_size")
  83. max_memory=p_value;
  84. else
  85. return false;
  86. return true;
  87. }
  88. bool EditorExportPlatformJavaScript::_get(const StringName& p_name,Variant &r_ret) const{
  89. String n=p_name;
  90. if (n=="custom_package/debug")
  91. r_ret=custom_debug_package;
  92. else if (n=="custom_package/release")
  93. r_ret=custom_release_package;
  94. else if (n=="browser/enable_run")
  95. r_ret=show_run;
  96. else if (n=="options/memory_size")
  97. r_ret=max_memory;
  98. else
  99. return false;
  100. return true;
  101. }
  102. void EditorExportPlatformJavaScript::_get_property_list( List<PropertyInfo> *p_list) const{
  103. p_list->push_back( PropertyInfo( Variant::STRING, "custom_package/debug", PROPERTY_HINT_FILE,"zip"));
  104. p_list->push_back( PropertyInfo( Variant::STRING, "custom_package/release", PROPERTY_HINT_FILE,"zip"));
  105. p_list->push_back( PropertyInfo( Variant::INT, "options/memory_size",PROPERTY_HINT_ENUM,"32mb,64mb,128mb,256mb,512mb,1024mb"));
  106. p_list->push_back( PropertyInfo( Variant::BOOL, "browser/enable_run"));
  107. //p_list->push_back( PropertyInfo( Variant::INT, "resources/pack_mode", PROPERTY_HINT_ENUM,"Copy,Single Exec.,Pack (.pck),Bundles (Optical)"));
  108. }
  109. static void _fix_html(Vector<uint8_t>& html,const String& name,int max_memory) {
  110. String str;
  111. String strnew;
  112. str.parse_utf8((const char*)html.ptr(),html.size());
  113. Vector<String> lines=str.split("\n");
  114. for(int i=0;i<lines.size();i++) {
  115. if (lines[i].find("godot.js")!=-1) {
  116. strnew+="<script type=\"text/javascript\" src=\""+name+"_filesystem.js\"></script>\n";
  117. strnew+="<script async type=\"text/javascript\" src=\""+name+".js\"></script>\n";
  118. } else if (lines[i].find("var Module")!=-1) {
  119. strnew+=lines[i];
  120. strnew+="TOTAL_MEMORY:"+itos(max_memory*1024*1024)+",";
  121. } else {
  122. strnew+=lines[i]+"\n";
  123. }
  124. }
  125. CharString cs = strnew.utf8();
  126. html.resize(cs.size());
  127. for(int i=9;i<cs.size();i++) {
  128. html[i]=cs[i];
  129. }
  130. }
  131. static void _fix_files(Vector<uint8_t>& html,uint64_t p_data_size) {
  132. String str;
  133. String strnew;
  134. str.parse_utf8((const char*)html.ptr(),html.size());
  135. Vector<String> lines=str.split("\n");
  136. for(int i=0;i<lines.size();i++) {
  137. if (lines[i].find("$DPLEN")!=-1) {
  138. strnew+=lines[i].replace("$DPLEN",itos(p_data_size));
  139. } else {
  140. strnew+=lines[i]+"\n";
  141. }
  142. }
  143. CharString cs = strnew.utf8();
  144. html.resize(cs.length());
  145. for(int i=9;i<cs.length();i++) {
  146. html[i]=cs[i];
  147. }
  148. }
  149. struct JSExportData {
  150. EditorProgress *ep;
  151. FileAccess *f;
  152. };
  153. Error EditorExportPlatformJavaScript::export_project(const String& p_path,bool p_debug,const String& p_password) {
  154. String src_template;
  155. EditorProgress ep("export","Exporting for javascript",104);
  156. String template_path = EditorSettings::get_singleton()->get_settings_path()+"/templates/";
  157. if (p_debug) {
  158. src_template=custom_debug_package!=""?custom_debug_package:template_path+"javascript_debug.zip";
  159. } else {
  160. src_template=custom_release_package!=""?custom_release_package:template_path+"javascript_release.zip";
  161. }
  162. FileAccess *src_f=NULL;
  163. zlib_filefunc_def io = zipio_create_io_from_file(&src_f);
  164. ep.step("Exporting to HTML5",0);
  165. ep.step("Finding Files..",1);
  166. FileAccess *f=FileAccess::open(p_path.get_base_dir()+"/data.pck",FileAccess::WRITE);
  167. if (!f) {
  168. EditorNode::add_io_error("Could not create file for writing:\n"+p_path.basename()+"_files.js");
  169. return ERR_FILE_CANT_WRITE;
  170. }
  171. Error err = save_pack(f);
  172. size_t len = f->get_len();
  173. memdelete(f);
  174. if (err)
  175. return err;
  176. unzFile pkg = unzOpen2(src_template.utf8().get_data(), &io);
  177. if (!pkg) {
  178. EditorNode::add_io_error("Could not find template HTML5 to export:\n"+src_template);
  179. return ERR_FILE_NOT_FOUND;
  180. }
  181. ERR_FAIL_COND_V(!pkg, ERR_CANT_OPEN);
  182. int ret = unzGoToFirstFile(pkg);
  183. while(ret==UNZ_OK) {
  184. //get filename
  185. unz_file_info info;
  186. char fname[16384];
  187. ret = unzGetCurrentFileInfo(pkg,&info,fname,16384,NULL,0,NULL,0);
  188. String file=fname;
  189. Vector<uint8_t> data;
  190. data.resize(info.uncompressed_size);
  191. //read
  192. unzOpenCurrentFile(pkg);
  193. unzReadCurrentFile(pkg,data.ptr(),data.size());
  194. unzCloseCurrentFile(pkg);
  195. //write
  196. if (file=="godot.html") {
  197. _fix_html(data,p_path.get_file().basename(),1<<(max_memory+5));
  198. file=p_path.get_file();
  199. }
  200. if (file=="filesystem.js") {
  201. _fix_files(data,len);
  202. file=p_path.get_file().basename()+"_filesystem.js";
  203. }
  204. if (file=="godot.js") {
  205. //_fix_godot(data);
  206. file=p_path.get_file().basename()+".js";
  207. }
  208. String dst = p_path.get_base_dir().plus_file(file);
  209. FileAccess *f=FileAccess::open(dst,FileAccess::WRITE);
  210. if (!f) {
  211. EditorNode::add_io_error("Could not create file for writing:\n"+dst);
  212. unzClose(pkg);
  213. return ERR_FILE_CANT_WRITE;
  214. }
  215. f->store_buffer(data.ptr(),data.size());
  216. memdelete(f);
  217. ret = unzGoToNextFile(pkg);
  218. }
  219. return OK;
  220. }
  221. Error EditorExportPlatformJavaScript::run(int p_device) {
  222. String path = EditorSettings::get_singleton()->get_settings_path()+"/tmp/tmp_export.html";
  223. Error err = export_project(path,true,"");
  224. if (err)
  225. return err;
  226. OS::get_singleton()->shell_open(path);
  227. return OK;
  228. }
  229. EditorExportPlatformJavaScript::EditorExportPlatformJavaScript() {
  230. show_run=false;
  231. Image img( _javascript_logo );
  232. logo = Ref<ImageTexture>( memnew( ImageTexture ));
  233. logo->create_from_image(img);
  234. max_memory=3;
  235. pack_mode=PACK_SINGLE_FILE;
  236. }
  237. bool EditorExportPlatformJavaScript::can_export(String *r_error) const {
  238. bool valid=true;
  239. String err;
  240. String exe_path = EditorSettings::get_singleton()->get_settings_path()+"/templates/";
  241. if (!FileAccess::exists(exe_path+"javascript_debug.zip") || !FileAccess::exists(exe_path+"javascript_release.zip")) {
  242. valid=false;
  243. err+="No export templates found.\nDownload and install export templates.\n";
  244. }
  245. if (custom_debug_package!="" && !FileAccess::exists(custom_debug_package)) {
  246. valid=false;
  247. err+="Custom debug package not found.\n";
  248. }
  249. if (custom_release_package!="" && !FileAccess::exists(custom_release_package)) {
  250. valid=false;
  251. err+="Custom release package not found.\n";
  252. }
  253. if (r_error)
  254. *r_error=err;
  255. return valid;
  256. }
  257. EditorExportPlatformJavaScript::~EditorExportPlatformJavaScript() {
  258. }
  259. void register_javascript_exporter() {
  260. Ref<EditorExportPlatformJavaScript> exporter = Ref<EditorExportPlatformJavaScript>( memnew(EditorExportPlatformJavaScript) );
  261. EditorImportExport::get_singleton()->add_export_platform(exporter);
  262. }