summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Xu <alex_y_xu@yahoo.ca>2013-06-07 00:54:30 +0000
committerAlex Xu <alex_y_xu@yahoo.ca>2013-06-07 00:54:30 +0000
commitb08abbc6b196c055b26163c58c795bf09b2bb2c1 (patch)
treec63b3a5ff376a580f113f5223bb1e2b7e160dc2a
downloadhtml5ks-b08abbc6b196c055b26163c58c795bf09b2bb2c1.tar.xz
html5ks-b08abbc6b196c055b26163c58c795bf09b2bb2c1.zip
first commit
-rw-r--r--.gitignore3
-rw-r--r--api.txt32
-rw-r--r--gentium.ttfbin0 -> 362664 bytes
-rw-r--r--index.html43
-rw-r--r--lighttpd.conf23
-rw-r--r--playtime-webfont.ttfbin0 -> 50748 bytes
-rw-r--r--playtime-webfont.woffbin0 -> 33460 bytes
-rw-r--r--playtime.ttfbin0 -> 71220 bytes
-rw-r--r--playtime_bold.ttfbin0 -> 47916 bytes
-rw-r--r--test.html2
-rw-r--r--video.html6
11 files changed, 109 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..119b054
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+# ignore 'copyrighted' contents similar to emulators
+/dump
+/rpy
diff --git a/api.txt b/api.txt
new file mode 100644
index 0000000..17d3213
--- /dev/null
+++ b/api.txt
@@ -0,0 +1,32 @@
+== imachine{,_replay} api ==
+label * -> function
+jump_out -> save & register & call
+call -> ''
+seen_scene(scene) -> return label in seen_scenes
+int attraction_*
+path_end(chr, is_good)
+iscene(name, is_h, is_end)
+act_op(movie)
+imenu(choice)
+
+== script api ==
+chars: in ui_settings.rpy
+ e.g. his(text) -> promise
+with(transition, action) -> promise
+
+== prefs ==
+h-scenes (tied to shrinkwrap)
+fullscreen?
+webp (default on chrome/opera, off on others or webpjs)
+text speed
+auto delay
+music/sfx vol
+skip unread
+skip after choice
+
+== context menu ==
+show image, scrollback, skip, auto, options
+
+== save/load ==
+passive: seen_scenes
+active: track attraction
diff --git a/gentium.ttf b/gentium.ttf
new file mode 100644
index 0000000..a8c1756
--- /dev/null
+++ b/gentium.ttf
Binary files differ
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..3bf5749
--- /dev/null
+++ b/index.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Katawa Shoujo</title>
+ <link rel="shortcut icon" type="image/png" href="/dump/ui/icon.png">
+ <link rel="apple-touch-icon" href="/dump/ui/icon.png">
+ <style>
+ body {
+ margin: 0;
+ padding: 0;
+ overflow: hidden;
+ }
+ @font-face {
+ font-family: "Playtime";
+ /* src: url("playtime.ttf"); */
+ src: url("playtime-webfont.ttf");
+ src: url("playtime-webfont.woff");
+ }
+ #container {
+ width: 800px;
+ height: 600px;
+ position: relative;
+ overflow: hidden;
+ }
+ @keyframes toright {
+ from {
+ left: -100px;
+ }
+ to {
+ left: -190px;
+ }
+ }
+ </style>
+ </head>
+ <body>
+ <audio id="music" src="/dump/bgm/Ease.ogg" loop controls></audio>
+ <div id="container" style="position: relative;">
+ <img src="/dump/bgs/school_girlsdormhall.jpg" style="position: relative; animation: 1.5s toright both ease-in;">
+ <img src="/dump/ui/bg-say.png" style="position: absolute; top: 440px; left: 0;">
+ <div style="font: 22px/27px Playtime; color: white; width: 750px; height: 90px; position: absolute; top: 493px; left: 28px;">It doesn't take long to identify the source as Lilly's room, though the deep timbre of the female voice unmistakably belongs not to her, but to her sister.</div>
+ </div>
+ </body>
+</html>
diff --git a/lighttpd.conf b/lighttpd.conf
new file mode 100644
index 0000000..a062b6a
--- /dev/null
+++ b/lighttpd.conf
@@ -0,0 +1,23 @@
+server.document-root = "/home/alex/html5ks"
+server.port = 8080
+mimetype.assign = (
+ ".html" => "text/html",
+ ".js" => "text/javascript",
+ ".css" => "text/css",
+ ".txt" => "text/plain",
+ ".jpg" => "image/jpeg",
+ ".png" => "image/png",
+ ".webp" => "image/webp",
+ ".webm" => "video/webm",
+ ".mkv" => "video/x-matroska",
+ ".ogg" => "audio/ogg",
+ ".woff" => "application/font-woff"
+)
+index-file.names = ("index.html")
+server.modules = ( "mod_expire", "mod_compress" )
+dir-listing.activate = "enable"
+compress.cache-dir = "/tmp/lighttpd-compress"
+compress.filetype = ("text/html", "text/plain", "text/css", "text/javascript")
+$HTTP["url"] =~ "^/dump/" {
+ expire.url = ("" => "access plus 1 years")
+}
diff --git a/playtime-webfont.ttf b/playtime-webfont.ttf
new file mode 100644
index 0000000..51fcb97
--- /dev/null
+++ b/playtime-webfont.ttf
Binary files differ
diff --git a/playtime-webfont.woff b/playtime-webfont.woff
new file mode 100644
index 0000000..9608992
--- /dev/null
+++ b/playtime-webfont.woff
Binary files differ
diff --git a/playtime.ttf b/playtime.ttf
new file mode 100644
index 0000000..a36000a
--- /dev/null
+++ b/playtime.ttf
Binary files differ
diff --git a/playtime_bold.ttf b/playtime_bold.ttf
new file mode 100644
index 0000000..e730c2b
--- /dev/null
+++ b/playtime_bold.ttf
Binary files differ
diff --git a/test.html b/test.html
new file mode 100644
index 0000000..4b09fa1
--- /dev/null
+++ b/test.html
@@ -0,0 +1,2 @@
+<!DOCTYPE html>
+<html><head><style>body{margin:0;padding:0;}</style></head><body><img src="screenshot.png"></body></html>
diff --git a/video.html b/video.html
new file mode 100644
index 0000000..f68852a
--- /dev/null
+++ b/video.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html>
+<html>
+ <body>
+ <video src="dump/video/op_1.webm" controls autoplay>
+ </body>
+</html>