|
1 | 1 | # Core Idea |
2 | | -A game for the Nintendo DS that has the player make paths between countries on the world map. Uses graph theory and breadth first search. |
3 | | -A reimplementation of [Travle](https://imois.in/games/travle/) by Oisin Carroll. |
| 2 | +A game for the Nintendo DS that has the player make paths |
| 3 | +between countries on the world map. Uses a graph of |
| 4 | +countries and breadth first search (BFS). |
| 5 | + |
| 6 | +Inspired by [Travle](https://imois.in/games/travle/) by |
| 7 | +Oisin Carroll. |
| 8 | +# How to Play |
| 9 | +# How to Build |
| 10 | +```sh |
| 11 | +cd assets |
| 12 | +./convert.sh |
| 13 | +cd .. |
| 14 | +make |
| 15 | +desmume graph.nds |
| 16 | +``` |
4 | 17 | # Technologies and libraries used |
5 | 18 | - C programming language |
6 | 19 | - GNU compiler collection |
7 | 20 | - LibNDS and NightFoxLib for interfacing with the Nintendo DS |
8 | 21 | - LibCheck for unit testing |
9 | | -# Wishlist |
10 | | -- Player can upload and download scores to and from an internet leaderboard. |
11 | | -- Scores are stored in a PostgreSQL database. |
12 | | -- Simple, satisfactory 2d world map. |
13 | | -- Player can zoom in/out and pan on the world map. |
14 | | -# Development Stages Planned |
15 | | -## Done |
16 | | -1. Graph C module working: construction, adjacency, pathfinding. |
17 | | -2. Countries of the world graph and basic game logic working. |
18 | | -3. Implemented as Text only game on NDS. |
19 | | -## In Progress |
20 | | -4. 2D world map implemented. |
21 | | -## Future |
22 | | -5. User statistics and internet leaderboard implemented. |
23 | | -6. Maintenance, debugging, improvements, translations. |
24 | | -# License |
25 | | -**TBD** |
| 22 | +# Features |
| 23 | +- Graph C module working: construction, adjacency, pathfinding. |
| 24 | +- Countries of the world graph and basic game logic working. |
| 25 | +- Implemented as text based game with visuals (dots on the map). |
| 26 | +# Rights Information |
| 27 | + Worldpath is a homebrew geography game for the Nintendo DS. |
| 28 | + Copyright (C) 2024 Alex McColm |
| 29 | + |
| 30 | + This program is free software: you can redistribute it and/or modify |
| 31 | + it under the terms of the GNU General Public License as published by |
| 32 | + the Free Software Foundation, either version 3 of the License, or |
| 33 | + (at your option) any later version. |
| 34 | + |
| 35 | + This program is distributed in the hope that it will be useful, but |
| 36 | + WITHOUT ANY WARRANTY; without even the implied warranty of |
| 37 | + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 38 | + General Public License for more details. |
| 39 | + |
| 40 | + You should have received a copy of the GNU General Public License |
| 41 | + along with this program. If not, see https://www.gnu.org/licenses/. |
0 commit comments