Skip to content

Latest commit

 

History

318 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation

Volor Savanna is a text adventure game

COMPLETE:

  • C
  • Flipper Zero
  • Python
  • Web

TODO:

  • Go
  • TI 84

To play:

  • Python (Windows): pip install VolorSavanna && python3 -m VolorSavanna
  • Python (Linux): python3 -m venv env && source env/bin/activate && pip install VolorSavanna && python3 -m VolorSavanna

To compile to DLL:

  • gcc -fPIC -shared -o VolorSavanna.so VolorSavanna.c

To use DLL (Python) (Non-Debian Linux):

import ctypes
import os
current_directory = os.getcwd()
game = ctypes.CDLL(f"{current_directory}/VolorSavanna.so")
print(game.main())

To use DLL (Python) (Debian Linux):

import ctypes
import os
from ctypes.util import find_library

lib = find_library("volorsavanna")
game = ctypes.CDLL(lib)
print(game.main())
  • To compile DLL to debian package (in the Tools folder): python3 c2deb.py

About

No description, website, or topics provided.

Resources

Stars

1 star

Watchers

2 watching

Forks

Releases

Packages

Used by

Contributors

Languages