-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.js
110 lines (93 loc) · 2.59 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import { VimWasm } from './node_modules/vim-wasm/vimwasm.js';
const screenCanvasElement = document.getElementById('vim-screen');
let vim = null;
// Handle drag and drop
function cancel(e) {
e.stopPropagation();
e.preventDefault();
}
window.startVim = function() {
vim = new VimWasm({
workerScriptPath: './node_modules/vim-wasm/vim.js',
canvas: screenCanvasElement,
input: document.getElementById('vim-input'),
});
vim.onFileExport = (fullpath, contents) => {
const slashIdx = fullpath.lastIndexOf('/');
const filename = slashIdx !== -1 ? fullpath.slice(slashIdx + 1) : fullpath;
const blob = new Blob([contents], { type: 'application/octet-stream' });
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.style.display = 'none';
a.href = url;
a.rel = 'noopener';
a.download = filename;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url);
};
vim.onError = console.error;
vim.start({
dirs: ['/app', '/js'],
cmdArgs: ['/app/main.rb'],
files: {
'/app/main.rb': `def tick args
args.outputs.labels << {
x: args.grid.w.half, y: args.grid.h - 5,
text: "w: #{args.grid.w}, h: #{args.grid.h}",
alignment_enum: 1
}
args.outputs.labels << {
x: args.grid.w.half, y: args.grid.h - 15,
text: "hello world",
alignment_enum: 1
}
args.outputs.sprites << {
x: 5, y: 5, w: 16, h: 16,
angle: 90,
path: 'sprites/ship-blue.png'
}
args.outputs.sprites << {
x: 21, y: 5, w: 16, h: 16,
angle: 90,
path: 'sprites/ship-red.png'
}
end
$gtk.reset
`,
'/js/save.js': `
window.gtk.play();
FS.writeFile('/app/main.rb', window.main_rb);
`,
'/home/web_user/.vim/vimrc': `
set expandtab tabstop=2 shiftwidth=2 softtabstop=2
colorscheme onedark
syntax enable
set guifont=monospace:h14
function! SaveGTK()
:silent w /app/main.rb
:call setreg('x', [])
:let @x = "window.main_rb = \`"
:redir! > /js/main-rb.js | silent echon @x | redir END
:call setreg('x', [])
:let @x = join(readfile("/app/main.rb"), "\\n")
:redir! >> /js/main-rb.js | silent echon @x | redir END
:call setreg('x', [])
:let @x = "\`;"
:redir! >> /js/main-rb.js | silent echon @x | redir END
:silent !/js/main-rb.js
:silent !/js/save.js
endfunction
command SaveGTK execute ":call SaveGTK()"
cabbrev w <c-r>=(getcmdtype()==':' && getcmdpos()==1 ? 'SaveGTK' : 'w')<CR>
call feedkeys("i")
`,
},
});
vim.onVimExit = status => { window.startVim(); };
window.vim = vim;
}
window.startVim();
window.saveFile = function() {
}