Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add images to readme #3

Merged
merged 3 commits into from
Sep 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
21 changes: 13 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,28 @@
# Gamebook Engine
![Gamebook Engine](/images/github-title.png?raw=true)

Gamebook Engine is an open source iOS app for creating and playing "gamebooks", a type of interactive fiction where the player gets to make decisions that influence the story.
Gamebook Engine is an iOS app for creating and playing gamebooks, a type of interactive fiction where the player gets to make decisions that influence the story.

## Features

* [x] Create classic (or more advanced) gamebooks right on your iDevice
* [x] Export and import games from non-proprietary JSON files
* [x] Import and play gamebooks
* [x] Create gamebooks right on your iPad or iPhone
* [x] Export games to non-proprietary JSON files (`.gbook`)
* [ ] Analyzer ensures you don't create any unreachable pages or dead-ends

## Screenshots

![Gamebook Engine Screenshots](/images/github-screenshots.jpg?raw=true)

## Gamebook Structure

* **Attributes**
* These are essentially just global variables shared throughout a game
* They hold a name, and an integer value which defaults to 0
* They hold a name, and an decimal value which defaults to 0.0
* **Pages**
* **Content**
* The text of the page, formatted with a limited set of Markdown attributes
* **Consequences**
* The consequences of landing on a given page
* Method for manipulating a player's stored attributes
* A consequence can affect attributes in three ways:
* Set (to a value)
* Increment (by a value)
Expand All @@ -29,12 +34,12 @@ Gamebook Engine is an open source iOS app for creating and playing "gamebooks",
* **Rules**
* Match Any or All rules (based on the value of Attributes) to determine if a decision appears on the page

If you're curious about what an exported Gamebook looks like, view [An Introduction to Gamebook Engine.gbook](https://github.com/amiantos/gamebookengine/blob/master/BRGamebookEngine/Built-in%20Gamebooks/An%20Introduction%20to%20Gamebook%20Engine.gbook) for an example.
If you're curious about what an exported Gamebook looks like, view [An Introduction to Gamebook Engine.gbook](https://github.com/amiantos/gamebookengine/blob/master/GamebookEngine/Built-in%20Gamebooks/An%20Introduction%20to%20Gamebook%20Engine.gbook) as a simple example.

## To Install

1. `git clone https://github.com/amiantos/gamebookengine.git`
2. Open `BRGamebookEngine.xcworkspace` in Xcode 11 or higher.
2. Open `GamebookEngine.xcworkspace` in Xcode 11 or higher.
3. Build :)

## Author
Expand Down
Binary file added images/.DS_Store
Binary file not shown.
Binary file added images/app-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/github-screenshots.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/github-title.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.