Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

This is a sideways scrolling demo of text based VDP capabilities, converted to compile on Agon using AgDev.

Here's the original Readme from https://github.com/Laynholt/simple_journey

Simple Journey

Simple console game. \ O /

This is a simple console game that draws the generated landscape using ASCII characters.

-> To move, click: A | D. -> To exit: Esc.

This game can be started on Linux and Windows.

Manual

Link to the repo: https://github.com/Laynholt/simple_journey.git

For Linux:

  1. git clone https://github.com/Laynholt/simple_journey.git
  2. cd simple_journey/src
  3. gcc -o simple.out simple.c config.c functions.c kbhit.c
  4. clear
  5. ./simple.out

For Window you can clone this project on the Visual Studio project.

Linux version

Screen-466

Windows version

Screen-467

Special thanks

Used repos:

  1. https://github.com/lihexali/linux-kbhit // implements GetAsyncKeyState() on Linux.