StandaloneFileBrowser.jslib 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. var StandaloneFileBrowserWebGLPlugin = {
  2. // Open file.
  3. // gameObjectNamePtr: Unique GameObject name. Required for calling back unity with SendMessage.
  4. // methodNamePtr: Callback method name on given GameObject.
  5. // filter: Filter files. Example filters:
  6. // Match all image files: "image/*"
  7. // Match all video files: "video/*"
  8. // Match all audio files: "audio/*"
  9. // Custom: ".plist, .xml, .yaml"
  10. // multiselect: Allows multiple file selection
  11. UploadFile: function(gameObjectNamePtr, methodNamePtr, filterPtr, multiselect) {
  12. gameObjectName = Pointer_stringify(gameObjectNamePtr);
  13. methodName = Pointer_stringify(methodNamePtr);
  14. filter = Pointer_stringify(filterPtr);
  15. // Delete if element exist
  16. var fileInput = document.getElementById(gameObjectName)
  17. if (fileInput) {
  18. document.body.removeChild(fileInput);
  19. }
  20. fileInput = document.createElement('input');
  21. fileInput.setAttribute('id', gameObjectName);
  22. fileInput.setAttribute('type', 'file');
  23. fileInput.setAttribute('style','display:none;');
  24. fileInput.setAttribute('style','visibility:hidden;');
  25. if (multiselect) {
  26. fileInput.setAttribute('multiple', '');
  27. }
  28. if (filter) {
  29. fileInput.setAttribute('accept', filter);
  30. }
  31. fileInput.onclick = function (event) {
  32. // File dialog opened
  33. this.value = null;
  34. };
  35. fileInput.onchange = function (event) {
  36. // multiselect works
  37. for (var i = 0; i < event.target.files.length; i++) {
  38. //urls.push(URL.createObjectURL(event.target.files[i]));
  39. var reader = new FileReader();
  40. reader.readAsDataURL(event.target.files[i]);
  41. var url = URL.createObjectURL(event.target.files[i]);
  42. var f_name= event.target.files[i].name;
  43. var base64data;
  44. reader.onload = function () {
  45. var urls = [];
  46. base64data = reader.result;
  47. console.log(base64data);
  48. urls.push({
  49. "file_name": f_name,
  50. "base64": base64data
  51. });
  52. //console.log('js: '+JSON.stringify(urls));
  53. SendMessage(gameObjectName, methodName, JSON.stringify(urls));
  54. };
  55. reader.onerror = function (error) {
  56. console.log('Error: ', error);
  57. //base64data= error;
  58. };
  59. }
  60. // File selected
  61. //SendMessage(gameObjectName, methodName, JSON.stringify(urls));
  62. // Remove after file selected
  63. document.body.removeChild(fileInput);
  64. }
  65. document.body.appendChild(fileInput);
  66. document.onmouseup = function() {
  67. fileInput.click();
  68. document.onmouseup = null;
  69. }
  70. },
  71. // Save file
  72. // DownloadFile method does not open SaveFileDialog like standalone builds, its just allows user to download file
  73. // gameObjectNamePtr: Unique GameObject name. Required for calling back unity with SendMessage.
  74. // methodNamePtr: Callback method name on given GameObject.
  75. // filenamePtr: Filename with extension
  76. // byteArray: byte[]
  77. // byteArraySize: byte[].Length
  78. DownloadFile: function(gameObjectNamePtr, methodNamePtr, filenamePtr, byteArray, byteArraySize) {
  79. gameObjectName = Pointer_stringify(gameObjectNamePtr);
  80. methodName = Pointer_stringify(methodNamePtr);
  81. filename = Pointer_stringify(filenamePtr);
  82. var bytes = new Uint8Array(byteArraySize);
  83. for (var i = 0; i < byteArraySize; i++) {
  84. bytes[i] = HEAPU8[byteArray + i];
  85. }
  86. var downloader = window.document.createElement('a');
  87. downloader.setAttribute('id', gameObjectName);
  88. downloader.href = window.URL.createObjectURL(new Blob([bytes], { type: 'application/octet-stream' }));
  89. downloader.download = filename;
  90. document.body.appendChild(downloader);
  91. document.onmouseup = function() {
  92. downloader.click();
  93. document.body.removeChild(downloader);
  94. document.onmouseup = null;
  95. SendMessage(gameObjectName, methodName);
  96. }
  97. }
  98. };
  99. mergeInto(LibraryManager.library, StandaloneFileBrowserWebGLPlugin);