Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anaseto/gruid-rltuto
roguelike tutorial in Go using the framework gruid
https://github.com/anaseto/gruid-rltuto
Last synced: 3 months ago
JSON representation
roguelike tutorial in Go using the framework gruid
- Host: GitHub
- URL: https://github.com/anaseto/gruid-rltuto
- Owner: anaseto
- License: isc
- Archived: true
- Created: 2021-06-29T07:52:50.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-23T08:46:41.000Z (about 1 year ago)
- Last Synced: 2024-06-08T09:36:12.843Z (5 months ago)
- Language: Go
- Homepage: https://codeberg.org/anaseto/gruid-rltuto
- Size: 115 KB
- Stars: 19
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
**Migrated to https://codeberg.org/anaseto/gruid-rltuto because of 2FA requirement**
# Gruid Go Roguelike Tutorial
This tutorial follows the overall structure of the [TCOD Python
Tutorial](http://rogueliketutorials.com/tutorials/tcod/v2), but makes use of
the [Go programming language](https://golang.org/) and the
[gruid](https://github.com/anaseto/gruid) roguelike game framework, instead of
TCOD.## Table of Contents
* [Part 0 & 1](https://github.com/anaseto/gruid-rltuto/tree/part-1) - Setting Up & Drawing the “@” symbol and moving it around
* [Part 2](https://github.com/anaseto/gruid-rltuto/tree/part-2) - Generic entities and the map
* [Part 3](https://github.com/anaseto/gruid-rltuto/tree/part-3) - Generating a Dungeon
* [Part 4](https://github.com/anaseto/gruid-rltuto/tree/part-4) - Field of View
* [Part 5](https://github.com/anaseto/gruid-rltuto/tree/part-5) - Placing enemies and kicking them (harmlessly)
* [Part 6](https://github.com/anaseto/gruid-rltuto/tree/part-6) - Doing (and taking) some damage
* [Part 7](https://github.com/anaseto/gruid-rltuto/tree/part-7) - Creating the Interface
* [Part 8](https://github.com/anaseto/gruid-rltuto/tree/part-8) - Items and Inventory
* [Part 9](https://github.com/anaseto/gruid-rltuto/tree/part-9) - Ranged Scrolls and Targeting
* [Part 10](https://github.com/anaseto/gruid-rltuto/tree/part-10) - Saving and Loading## Tips & Remarks
This tutorial assumes some familiarity with programming and git: each part is a
git branch and will come with a few explanations, but it's expected that you
read the code and comments and diffs between parts using git.You can do some simple operations on the web, like [compare
changes](https://github.com/anaseto/gruid-rltuto/compare/part-1...part-2)
between two parts, or view the code of a [particular
part](https://github.com/anaseto/gruid-rltuto/tree/part-1).Assuming you've followed the set up instructions of [Part
0](https://github.com/anaseto/gruid-rltuto/tree/part-1), you may want to clone
locally the tutorial's repository to explore:``` sh
# Clone the repository in a new directory gruid-rltuto:
git clone https://github.com/anaseto/gruid-rltuto
cd gruid-rltuto
# You can then use git on the command line to switch between parts:
git checkout part-1
# View code changes between two parts:
git diff part-1..part-2 *.go
# View changes between two parts for a specific file:
git diff part-1..part-2 model.go
# Run the code of the current branch "part-1":
go run .
```*Note:* The code in this repository can be used under the same permissive
license as gruid, or as a public domain work
[CC0](https://creativecommons.org/publicdomain/zero/1.0/), as you prefer. In
short, you can do whatever you want with it.