Skip to content
This repository was archived by the owner on Jun 25, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,7 @@ The current module-based format required npm and browserify.
Build with:

npm run-script build
This game is connected to the world, all players are sharing their best cars each game round. Only the dominant cars win.
The TOP car from each player in the world is added to your car list each game cycle.
This car is therefore added to your gene pool and is then genetically spliced and paired with your other cars.
Top cars are transmitted around the world from other players who are online RIGHT NOW using WebSockets style technology for data streaming ( PubNub ).
17 changes: 17 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,19 @@ <h3>Controls</h3>
</td>
</tr>
</table>
<select id="elitevalues">
<option value="0.1">0</option>
<option value="1.1" selected="selected">1.1</option>
<option value="2.1">2.1</option>
<option value="3.1">3.1</option>
<option value="4.1">4.1</option>
<option value="5.1">5.1</option>
<option value="6.1">6.1</option>
<option value="7.1">7.1</option>
<option value="8.1">8.1</option>
<option value="9.1">9.1</option>
<option value="10.1">10.1</option>
</select>

<h3>Graph</h3>
<table>
Expand All @@ -251,6 +264,10 @@ <h3>Graph</h3>
<th>Blue</th>
<td>Average of the entire generation</td>
</tr>
<tr>
<th>Yellow</th>
<td>product of the entire generation</td>
</tr>
</table>

<h3>Genome</h3>
Expand Down
5 changes: 3 additions & 2 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
html {
font-size: 15px;
font-family: sans-serif;
color: #112D4E;
color: goldenrod;
line-height: 1.4;
}

html * {
box-sizing: border-box;
margin:0;
}

body {
Expand Down Expand Up @@ -37,7 +38,7 @@ body {
#div {
width: 800px;
height: 400px;
border: 1px solid #112D4E;
border: 1px solid black;
}

#data {
Expand Down