summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Xu <alex_y_xu@yahoo.ca>2013-08-21 12:55:52 -0400
committerAlex Xu <alex_y_xu@yahoo.ca>2013-08-21 12:55:52 -0400
commite526f3df818ea21760c5eeb4e2f728845bb93140 (patch)
tree1dfc39e5d1b281accf5e4c56fbc57542c8d62593
parenta1bdc1283d2464bff2bc725988b2fdc74b34ef74 (diff)
downloadhtml5ks-e526f3df818ea21760c5eeb4e2f728845bb93140.tar.xz
html5ks-e526f3df818ea21760c5eeb4e2f728845bb93140.zip
continue work on i18n
-rw-r--r--unrpyc/Makefile4
-rw-r--r--unrpyc/decompiler.py12
-rwxr-xr-xunrpyc/find-gzip.sh12
-rw-r--r--www/index.html4
-rw-r--r--www/js/html5ks.js6
5 files changed, 18 insertions, 20 deletions
diff --git a/unrpyc/Makefile b/unrpyc/Makefile
index 826f1e3..829d2b9 100644
--- a/unrpyc/Makefile
+++ b/unrpyc/Makefile
@@ -13,6 +13,10 @@ script.json: $(patsubst %.rpyc,%.json,$(wildcard script-*.rpyc))
%.json: %.json.o
node fix.js $< $@
+ui-strings.json.o: ui-strings.rpyc *.py
+ python unrpyc.py --clobber $< $@
+ sed -i -e 's/ \["init_language", "en", \],//;s/^\]}$$/}/' $@
+
%.json.o: %.rpyc *.py
python unrpyc.py --clobber $< $@
diff --git a/unrpyc/decompiler.py b/unrpyc/decompiler.py
index 95aebf7..ee55ef1 100644
--- a/unrpyc/decompiler.py
+++ b/unrpyc/decompiler.py
@@ -274,14 +274,12 @@ class PrintRenPython(python_ast.NodeVisitor):
return '"%s"' % node.attr
def visit_Assign(self, node):
- if not isinstance(node.targets[0], python_ast.Subscript):
- if isinstance(node.targets[0], python_ast.Name):
- id = node.targets[0].id
- if id == 'suppress_window_after_timeskip' or id == '_window':
- return
- else:
+ if isinstance(node.targets[0], python_ast.Subscript):
return
- print(python_ast.dump(node))
+ if isinstance(node.targets[0], python_ast.Name):
+ id = node.targets[0].id
+ if id == 'suppress_window_before_timeskip' or id == 'suppress_window_after_timeskip' or id == '_window':
+ return
self.f.write(self.visit(node.targets[0]))
self.f.write(': ')
self.f.write(self.visit(node.value))
diff --git a/unrpyc/find-gzip.sh b/unrpyc/find-gzip.sh
index 2ee9064..cb65dc9 100755
--- a/unrpyc/find-gzip.sh
+++ b/unrpyc/find-gzip.sh
@@ -1,13 +1,11 @@
#!/bin/sh
-ZOPFLI="$(command -v zopfli)"
-GZIP="$(command -v gzip)"
-if [ -n $ZOPFLI ]; then
- echo "$ZOPFLI"
-elif [ -n $GZIP ]; then
+if command -v zopfli; then
+ printf "%s" "$(command -v zopfli)"
+elif command -v gzip; then
echo >&2 "Consider obtaining zopfli (https://code.google.com/p/zopfli/)"
echo >&2 "for higher compression ratios (about 5% decrease in size of"
- echo >&2 "script.json.gz."
- echo "$GZIP -9"
+ echo >&2 "script.json.gz)."
+ printf "%s" "$(command -v gzip) -9"
else
echo >&2 "Could not find zopfli or gzip, aborting."
exit 1
diff --git a/www/index.html b/www/index.html
index cbd4a18..bc4de59 100644
--- a/www/index.html
+++ b/www/index.html
@@ -62,8 +62,8 @@
<div id="main-menu-buttons" style="top: 377px; position: absolute; left: 81px;">
<div id="start" class="button main_menu_start"></div>
<div id="load" class="button main_menu_load disabled"></div>
- <div id="extras" class="button main_menu_extras disabled"></div>
- <div class="options-button main_menu_options button"></div>
+ <div id="extras" class="button main_menu_extra disabled"></div>
+ <div class="options-button main_menu_config button"></div>
<div class="quit button main_menu_quit disabled"></div>
</div>
<div id="version" style="">
diff --git a/www/js/html5ks.js b/www/js/html5ks.js
index ff3fc18..74ab43b 100644
--- a/www/js/html5ks.js
+++ b/www/js/html5ks.js
@@ -1,8 +1,6 @@
"use strict";
window.html5ks = {
- data: {
- script: {}
- },
+ data: {},
persistent: {},
init: function () {
var defaultPersistent = {
@@ -211,13 +209,13 @@ window.html5ks = {
}
this.api.init();
this.menu.init();
+ this.i18n.init();
if (this.persistent.fullscreen) {
document.body.addEventListener("click", function onclick() {
this.removeEventListener("click", onclick, false);
html5ks.fullscreen();
}, false);
}
- this.i18n.init();
},
start: function () {
this.fetch("json", "script").then(function () {