-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (55 loc) · 2.8 KB
/
Copy pathindex.html
File metadata and controls
77 lines (55 loc) · 2.8 KB
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<link href="styles/style.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="favorites icon" href="images/happy-arrow.png">
<title>RustMania</title>
</head>
<body>
<h1>Rustmania</h1>
<p>RustMania is a <abbr title="Vertically Scrolling Rhythm Game">VSRG</abbr> inspired by <a href="https://www.stepmania.com/">Stepmania</a> and <a href="https://etternaonline.com/">Etterna</a>.</p>
<p>As the game is early in development we do not have any official releases, however you can still obtain a development version from our <a href="https://github.com/RGates94/rustmania">Github</a>.</p>
<img src="images/screenshot-1.png" alt="RustMania Screenshot">
<p>Why you should be excited about RustMania:
<ul><li>Rust is fast and safe</li>
<li>New engine free from legacy code</li>
<li>Completely open source</li>
<li>Compatible with .sm files</li>
<li>Simple system for creating Noteskins</li>
<li>Cross platform</li></ul>
<p>Cool things that are planned:</p>
<ul><li>Support for reading from and writing to all common simfile formats, including a custom format for Rustmania.</li>
<li>Support for a variety of audio formats</li>
<li>Lua scripting</li>
<li>Editor</li>
<li>Difficulty calc</li>
<li>Potential to play in browser</li>
<li>...and more!</li></ul>
<h2>Installation</h2>
<p>To compile RustMania, you will first need to install Rust, this can most easily be done through `rustup`.</p>
<p>On Windows, you can download and run the installer from the <a href="https://www.rust-lang.org/en-US/install.html">Rust website</a>.</p>
<p>On Linux or macOS, you can install rustup with the following command:</p>
<code>curl https://sh.rustup.rs -sSf | sh</code>
<p>Once Rust has installed, you can compile and run the game using `Cargo`, Rust's built-in package manager.
To compile and open the resulting binary with the default resources, you can simply input the following command:</p>
<code>
cargo run --release
</code>
<h2>Release History</h2>
<p>Next Release</p>
<ul><li>0.1.0
<ul><li>Work in progress. See the <a href="about-rustmania.html">about page</a> for more details.</li></ul></ul>
<h2>Licence</h2>
<p>Distributed under the MIT license. See ``LICENSE`` for more information.</p>
<p>"Mu" by Solarbear is licensed under CC SA 3.0.</p>
<h2>Contributing</h2>
<ol><li>Fork it (<a href="https://github.com/Rgates94/Rustmania/fork">https://github.com/Rgates94/Rustmania/fork</a>)</li>
<li>Create your feature branch (`git checkout -b feature/fooBar`)</li>
<li>Commit your changes (`git commit -am 'Add some fooBar'`)</li>
<li>Push to the branch (`git push origin feature/fooBar`)</li>
<li>Create a new Pull Request</li></ol>
<script src="scripts/main.js"></script>
</body>
</html>