Awesome
inu-plays-roguelike
work in progress
'Twitch Plays Pokémon'-style 'Roguelike' game using inu
play it on a live server!: http://inu-plays-roguelike.herokuapp.com/
architecture
- server has state of app
- when user joins, connects to server to receive state
- if user moves, sends action to server
- server updates state and sends new state to all users
TODO: use Entity Component System architecture.
TODO: use webtrc-swarm
instead of central server.
characters
- empty space: ' '
- open space: '.'
- vertical wall: '|'
- horizontal wall: '-'
- adventurer: '@'
- dragon: 'D'
as in
-----------
|....@....|
|.........|
|.........|
|.........|
|....D....|
-----------
developer how to
install
git clone git://github.com/ahdinosaur/inu-plays-roguelike
cd inu-plays-roguelike
npm install
start development server
npm run dev
start production server
npm run prod
resources
license
The Apache License
Copyright © 2016 Michael Williams
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.