anarch/index.html

294 lines
8.9 KiB
HTML
Raw Normal View History

2020-07-18 14:40:45 -04:00
<!DOCTYPE html>
<html lang="en">
<!-- Anarch game webpage, made by Miloslav Číž, released under CC0 1.0. -->
<head>
<meta charset="utf-8"/>
<meta name="author" content="Miloslav Číž">
<meta name="description" content="Anarch game website">
<meta name="keywords" content="game,gaming,anarch,drummyfish,tastyfish,anarchism,free software,free culture,public domain,cc0,freedom,suckless,open source">
<title> Anarch </title>
<style>
2020-11-11 08:46:48 -05:00
@font-face
{
font-family: Aileron;
src: url(http://www.tastyfish.cz/Aileron-Light.otf);
}
@font-face
{
font-family: Aileron;
src: url(http://www.tastyfish.cz/Aileron-Bold.otf);
font-weight: bold;
}
@font-face
{
font-family: Aileron;
src: url(http://www.tastyfish.cz/Aileron-LightItalic.otf);
font-style: italic;
}
b
{
color: #d91a1a;
}
ul
{
width: 75%;
margin: 20px auto;
padding: 10px;
background-color: rgb(28,24,22);
}
li
{
display: inline-block;
width: 24%;
margin: 10px 0;
padding: 0;
text-align: center;
vertical-align: top;
}
.logo
{
margin: 20px auto;
}
a
{
text-decoration: none;
color: white;
border-bottom: 1px solid white;
}
body
{
font-family: 'Aileron', sans-serif;
max-width: 750px;
margin: auto;
padding: 50px 0;
color: white;
background-color: black;
}
p
{
text-align: justify;
}
h1
{
text-align: center;
font-size: 70px;
}
h2
{
font-size: 25px;
text-align: center;
margin: 70px 0 25px;
color: white;
}
.subtitle
{
display: block;
margin: 20px;
text-align: center;
padding-bottom: 20px;
}
.wow
{
display: block;
width: 100%;
font-weight: bold;
font-size: 45px;
text-align: center;
color: white;
margin: 70px auto 35px;
text-shadow: 0px 0px 60px red;
}
.wow::before, .wow::after
{
content: "";
width: 30px;
height: 30px;
display: inline-block;
margin: 0 30px;
position: relative;
top: 4px;
background: url(https://upload.wikimedia.org/wikipedia/commons/e/e1/Anarcho_pacifism_animation_2_inverted.gif) no-repeat;
background-size: contain;
}
.description
{
display: block;
width: 75%;
margin: 20px auto;
font-size: 20px;
font-style: italic;
color: #dddddd;
}
.footer
{
border-top: 1px solid white;
display: block;
margin: 40px auto;
padding: 10px;
font-size: 15px;
font-style: italic;
color: #cccccc;
text-align: center;
}
img
{
display: block;
margin: auto;
}
.subtitle
{
display: block;
text-align: center;
}
iframe, .screenshot
{
display: block;
margin: 20px auto;
}
2020-11-13 10:28:31 -05:00
.photo
2020-11-11 08:46:48 -05:00
{
2020-11-13 10:28:31 -05:00
width: 75%;
2020-11-11 08:46:48 -05:00
}
.ap
{
width: 30px;
}
2020-07-18 14:40:45 -04:00
</style>
</head>
<body>
2020-11-21 03:17:24 -05:00
<a href="https://drummyfish.gitlab.io/anarch"><img class="logo" src="media/logo_big.png" alt="logo"></a>
2020-07-18 14:40:45 -04:00
2020-10-31 14:41:54 -04:00
<span class="subtitle"><i>suckless, anticapitalist, public domain game for everyone</i></span>
2020-10-28 14:33:48 -04:00
2020-11-21 03:45:11 -05:00
<iframe width="560" height="315" sandbox="allow-same-origin allow-scripts" src="https://libre.video/videos/embed/c968774a-c12d-46d6-8851-0c578ffa8dcb" frameborder="0" allowfullscreen></iframe>
2020-11-03 10:56:48 -05:00
2020-11-21 04:01:35 -05:00
<span class="subtitle"><a href="https://drummyfish.itch.io/anarch">itch.io</a></span>
2020-07-18 14:40:45 -04:00
<span class="wow">THIS IS SPECIAL</span>
2020-11-03 10:56:48 -05:00
<ul>
<li>needs only <b>200 KB</b>, <b>32 KB RAM</b>, <b>40 MHz CPU</b>!</li>
<li><b>suckless</b>, pure C, <b>no dependencies</b>, no FPU, GPU or file I/O needed</li>
<li>10 levels, 6 weapons, 7 enemy types, 3 ammo types</li>
<li>varying floor/ceiling oldschool SW ray casting engine with mouse support</li>
<li><b>100% pubic domain</b> CC0 free software and culture</li>
<li>100% original work, no third party assets</li>
<li>well documented, hackable, <b>extremely portable</b></li>
<li>completely <b>gratis</b>, without ads, DRM or similar bullshit</li>
</ul>
2020-10-28 14:33:48 -04:00
2020-07-18 14:40:45 -04:00
<p class="description">
2020-11-03 10:56:48 -05:00
This isn't a 90s style retro shooter, this <b>is</b> a 90s shooter.
2020-07-18 14:40:45 -04:00
</p>
<p class="description">
2020-10-31 14:41:54 -04:00
This game runs everywhere and adheres to great <a href="https://suckless.org">simplicity</a>.
2020-11-11 08:46:48 -05:00
It is much more efficient and portable than Doom and has completely
<b>no dependencies</b>. Not even floating point is used, in case your
computer doesn't have the HW unit. The game can fit into <b>200 KB</b>
(including assets!) and can run with just <b>32 KB RAM</b>. No build system,
library, internet connection or package manager is inherently required for
compilation as the whole game is written in pure C language.
2020-07-18 14:40:45 -04:00
</p>
<p class="description">
2020-11-14 11:58:57 -05:00
This is an experiment and art that categorically rejects capitalist
technology.
2020-07-18 14:40:45 -04:00
</p>
2020-11-13 10:28:31 -05:00
<img class="photo" src="media/3screens.png" alt="screenshots">
2020-07-18 14:40:45 -04:00
2020-09-26 08:03:49 -04:00
<span class="wow">MORE THAN A GAME</span>
2020-07-18 14:40:45 -04:00
<p class="description">
2020-11-14 11:58:57 -05:00
This is not a mere entertainment or toy meant for killing time or pursuing
low goals such as making profit or something to put on portfolio, this is
much more. Anarch is completely <b>gratis and free as in freedom</b> and
besides entertainment can also be used for education, research, hacking, media
creation, as a benchmark, as a test, as an environment, as an engine, as
a basis for something greater. You are not limited by anything, there are
no conditions to agree to. Nothing is hidden, everything is allowed, no
2020-11-19 13:55:00 -05:00
burdens are imposed. The best motivation for creating anything is only
the <b>pure love of creation for its own sake</b>, unburdened by any other
goal than creating something truly useful.
2020-07-18 14:40:45 -04:00
</p>
2020-11-13 10:28:31 -05:00
<img class="photo" src="https://upload.wikimedia.org/wikipedia/commons/8/83/Anarch_Devices.jpg" alt="screenshots">
2020-10-31 14:41:54 -04:00
2020-07-18 14:40:45 -04:00
<span class="wow">NO ONE OWNS THIS</span>
<p class="description">
Not even I, the creator, own any part of this game.
I&nbsp;have purposefully created everything myself from scratch,
including the engine, graphics, sounds, music, even the font and palette,
so that I could eventually give up all my rights and
2020-10-28 14:33:48 -04:00
dedicate this game fully and <b>completely to the public domain</b>,
2020-11-14 11:58:57 -05:00
to you, my dear fellow human being. No one should be allowed to own
2020-07-18 14:40:45 -04:00
information and art.
</p>
<p class="description">
2020-10-31 14:41:54 -04:00
I've done my best to ensure this is 100% free as in freedom software and
2020-07-18 14:40:45 -04:00
culture, well understandable and documented. This isn't made for any
2020-10-31 14:41:54 -04:00
profit. This is made out of <b>love</b>, for you and for the greater good.
2020-07-18 14:40:45 -04:00
</p>
2020-11-02 09:53:26 -05:00
2020-07-18 14:40:45 -04:00
<h2>Download</h2>
<ul>
2020-11-21 03:17:24 -05:00
<li><a href="https://gitlab.com/drummyfish/anarch/-/raw/master/bin/Anarch_linux64_sdl_elf_1-0?inline=false">GNU/Linux SDL</a></li>
<li><a href="https://gitlab.com/drummyfish/anarch/-/raw/master/bin/Anarch_LQ_linux64_sdl_elf_1-0?inline=false">GNU/Linux SDL LQ</a></li>
2020-11-21 03:20:03 -05:00
<li><a href="https://drummyfish.gitlab.io/anarch/bin/web/anarch.html">play in browser</a></li>
2020-11-21 03:17:24 -05:00
<li><a href="https://gitlab.com/drummyfish/anarch/-/raw/master/bin/Anarch_pokitto_1-0.pop?inline=false">Pokitto</a></li>
<li><a href="https://gitlab.com/drummyfish/anarch/-/raw/master/bin/Anarch_gbmeta_1-0.zip?inline=false">GB Meta</a></li>
<li><a href="https://gitlab.com/drummyfish/anarch/-/raw/master/bin/Anarch_winshitxp_sdl_1-0.zip?inline=false">M$ Win$hit XP SDL</a></li>
2020-11-14 06:01:49 -05:00
<li><a href="https://gitlab.com/drummyfish/anarch/-/archive/master/anarch-master.zip">source code</a></li>
2020-11-21 03:17:24 -05:00
<li><a href="https://gitlab.com/drummyfish/anarch/-/tree/master/bin">more downloads</a></li>
2020-07-18 14:40:45 -04:00
</ul>
<h2>Explore</h2>
<ul>
2020-09-26 08:03:49 -04:00
<li><a href="https://gitlab.com/drummyfish/sucklessfps">source code</a></li>
<li><a href="https://www.tastyfish.cz">author's website</a></li>
2020-11-21 03:59:11 -05:00
<li><a href="https://libregamewiki.org/Anarch">libre game wiki</a></li>
2020-09-26 08:03:49 -04:00
<li><a href="">OGA assets</a></li>
2020-07-18 14:40:45 -04:00
</ul>
2020-11-03 10:56:48 -05:00
<h2><a href="https://gitlab.com/drummyfish/anarch#faq">FAQ in readme</a></h2>
2020-07-18 14:40:45 -04:00
<p class="footer">
2020-10-28 14:33:48 -04:00
This page and the presented game, both made by drummyfish, are released under
2020-07-18 14:40:45 -04:00
<a href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0</a>.
This page uses <a href="http://dotcolon.net/font/aileron/">Aileron</a>
CC0 font (if loaded properly).
</p>
</body>
</html>