New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

roguelike

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

roguelike

  • 0.0.2
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Gem Version

Roguelike

A Rogue cloning engine written in Ruby

Roguelike is intended to be a full engine capable of running clones of the 1980 game Rogue. Users will eventually be able to simply provide a series of maps they've created and Roguelike will handle all of the logic of the game. In this way, someone who wants to create their own version of Rogue simply needs to design their dungeons, layout the enemies and treasures, and let Roguelike do the rest.

Usage

Using Roguelike is relatively simple. In order to create your own clone of Rogue, all you need to do is create a YAML file containing all of the necessary information for the game to run.

map.yaml

Your YAML file should contain a list of rooms (or levels) for your game, each with the following information:

DataDescription
numberThe number of the room, which will determine the order in which the rooms are visited
initial_xAn integer representing the x coordinate at which the player character should be drawn upon entering the room
initial_yAn integer representing the y coordinate at which the player character should be drawn upon entering the room
layoutA visual representation in ASCII characters of the room's layout

When drawing the layout, the following characters should be used to represent various parts of the map:

CharacterWhat it Represents
`and-`
#Doors/stairs, which will lead the player to the next room

There will be more characters available to represent other elements, such as enemies, traps, or treasure further in development. The player's character will be rendered as the @ character based on the coordinates designed in the YAML file.

For an example of how your YAML file should be constructed, look at example_map.yaml

Once your map is complete, you can start the program using the command:

$ roguelike run my_map.yaml

This will read your YAML file and start the game.

Contributing

If you would like to contribute to Roguelike, feel free to create a pull request. If you'd like to contact me, you can reach me at chrisccerami@gmail.com or on Twitter @chrisccerami.

  1. Fork it ( https://github.com/chrisccerami/roguelike/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

License

Copyright (c) 2015 Chris C Cerami

MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

FAQs

Package last updated on 28 Jul 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc