-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
150 lines (118 loc) · 5.32 KB
/
index.html
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="/manifest.json">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
<meta name="description" content="LambdaHack : a small dungeon crawler illustrating the roguelike game engine of the same name" />
<meta name="keywords" content="roguelike, squad, turnbased, turnbased tactics, ASCII, browsergame, HTML5, freesoftware, stealth, scifi, indiedev, gamedev, Haskell, PCG, replayability" >
<title>LambdaHack</title>
<link rel="stylesheet" href="https://latest.cactus.chat/style.css" type="text/css">
<style type="text/css">
/* Speed: <http://www.w3.org/TR/CSS21/tables.html#fixed-table-layout> */
table { table-layout:fixed;border-collapse:collapse;border:none;margin-left:0px; }
/* The nudge by one pixel in margin-left above was needed on Chrome to prevent
anti-aliasing that sometimes kicked in, ignoring hinting, but now
in a newer version of Chrome, on a different machine, 0px is needed. */
tr, td { table-layout:fixed;border-collapse:collapse;margin-left:0;margin-right:0;font-family:lambdaHackFont;font-size:16px;padding:0 0 0 0;border:1px solid #000000; }
/* Even td { height:16px; } doesn't prevent Firefox from inflating cell height up to, e.g., 19.2 plus border. */
@font-face {
font-family: lambdaHackFont;
src: url("16x16xw.woff");
}
a:link { color: #FFFFFF } /* unvisited links */
a:visited { color: #B8BFCB } /* visited links */
a:hover, a:focus { color: #FFFFFF } /* user hovers, or focus */
a:active { color: #FFFFFF } /* active links */
.cactus-editor-textarea {background-color:black;color:white;font-size:16px;font-family:lambdaHackFont;height:15rem;}
.cactus-editor-above {padding:0;}
.cactus-login-button {display:none;}
</style>
</head>
<body style="color:#C4BEB1; background:#000000; font-family:lambdaHackFont">
<div>
<table>
<tr>
<td>
<h1 style="letter-spacing:1px">
LambdaHack
</h1>
</td>
<td>
<h4 style="line-height:130%">
The game may lag in a browser, but you can download
a <a href="http://github.com/LambdaHack/LambdaHack/releases" >native binary</a>
that is fast, has proportional fonts and can display in fullscreen.
If the game window is too large, zoom out
(Control-minus) or use the native executable with 8-pixel fonts.
Press NumLock if numpad erratic or use another key scheme or mouse.
Press '?' for help or read
<a href="https://github.com/LambdaHack/LambdaHack/blob/master/GameDefinition/PLAYING.md" >PLAYING</a>.
</h4>
</td>
</tr>
</table>
</div>
<div style="text-align:center;font-size: 16px;">
<div style="display:inline-block;" tabindex="0" id="gameMap">
<div style="text-align:left;font-size:16px;" id="pleaseWait">
<p>
Please wait. Bleeding edge experimental technology of the future is being loaded, <br>
which may take 10 or 20 seconds with no apparent progress. <br>
Be patient. Do not make hasty keystrokes. Breathtaking letters <br>
in sixteen brilliant colors and HD resolution beckon from the other shore.
<p>
from README: <br>
The game runs rather slowly in the browser (fastest on Chrome) <br>
and you are limited to the square font for both map and texts. <br>
Savefiles are prone to corruption on the browser, <br>
e.g., when it's closed while the game is still saving progress. <br>
Hence, after trying out the game, you may prefer to use a native <br>
binary for your architecture, if it exists.
<p>
Copyright (c) 2008--2021 Andres Loeh, Mikolaj Konarski and others (see git history)
</div>
</div>
<div style="text-align:left">
<p>
<p>
<p>
I hope you have fun playing. Regardless, please leave some anonymous feedback below or log in to the same <a href="https://matrix.to/#/%23comments_lambdahack.github.io_about-the-sample-game-for-LH-engine%3Acactus.chat">matrix game chat room</a>.
</div>
<div style="text-align:left">
<div id="comments"</div>
</div>
</div>
<script language="javascript" src="lz-string.min.js"></script>
<script language="javascript" src="lambdahack.all.js"></script>
<!--
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-22466968-3', 'auto');
ga('send', 'pageview');
</script>
-->
<script type="text/javascript" src="https://latest.cactus.chat/cactus.js"></script>
<script>
initComments({
node: document.getElementById("comments"),
defaultHomeserverUrl: "https://matrix.cactus.chat:8448",
serverName: "cactus.chat",
siteName: "lambdahack.github.io",
commentSectionId: "about-the-sample-game-for-LH-engine"
})
</script>
</body>
</html>