mirror of
https://github.com/tonytins/citylimits
synced 2025-06-25 09:24:44 -04:00
Initial foundation for VR Mode
A lot has happened since May that I couldn't begin to describe what was working at the time. What I can tell you that is new as of this commit is an upcoming VR mode.
This commit is contained in:
parent
ef6b097ef2
commit
1f038ea53c
16 changed files with 374 additions and 318 deletions
|
@ -1 +1,11 @@
|
|||
# City Limits
|
||||
# City Limits
|
||||
|
||||
City Limits is a re-imagining of SimCity Classic that brings modern city building concepts to the classic game.
|
||||
|
||||
## Advisors
|
||||
|
||||
Advisors were first introduced in the SNES version of SimCity.
|
||||
|
||||
## Upgrades
|
||||
|
||||
Though SimCity: BuildIt is a microtransaction hell, it functions very similar to classic in that zones are dragged and dropped down, instead of painted, but differs in h
|
42
docs/octy.md
Normal file
42
docs/octy.md
Normal file
|
@ -0,0 +1,42 @@
|
|||
# Open City Spec
|
||||
|
||||
*This ia WIP save file structure.*
|
||||
|
||||
Save file in City Limits are nothing more than JSON files.
|
||||
|
||||
## Top-level
|
||||
|
||||
```json
|
||||
{
|
||||
"city": "",
|
||||
"mayor": "",
|
||||
"version": "",
|
||||
}
|
||||
```
|
||||
|
||||
## Zones
|
||||
|
||||
```json
|
||||
{
|
||||
"zones": {
|
||||
"commercial": {},
|
||||
"residential": {},
|
||||
"industrial": {}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
Within each zone type are the zones themselves with their coordinates on the map. Each zone is given a random number as an id.
|
||||
|
||||
```json
|
||||
{
|
||||
"1": {
|
||||
"x": 654,
|
||||
"y": 564
|
||||
},
|
||||
"2": {
|
||||
"x": 321,
|
||||
"y": 85
|
||||
}
|
||||
}
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue