Skip to content

A simple framework for Python Text-Based games. Includes level-serving, etc. Tailored for use in my own game I'm working on.

License

Notifications You must be signed in to change notification settings

flancast90/LevPy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

LevPy

Text-based games made easy!

stable version badgerepo size badge

About

LevPy is a simple python file/function that allows the creation of text-based games easily through JSON data. For example, in main.py, you could include the following "level":

firstVar = '{"greeting":"Hello and welcome to LevPy! Type \"tell me more\" to learn more","tell me more":"LevPy is a python library that makes making games easy!"}'

Walk-Through/How-To

As you can see, the initial JSON value greeting has the output of Hello and welcome ..., and when the user types in "tell me more", we want LevPy to output LevPy is a python lib .... So how do we actually give the outputs and listen for the inputs? Easy, just tell the LevPy.py file what to do like so:

# Change
# def Command1_(update): to
def firstVar_(update):

#and all of this
#if update != "COMMAND TO SEND USER SOMEWHERE ELSE":
#        pos = "CHANGE PLAYER POS"
#        mainLoop(update)
#    else:
#        pos = "SAME POS"
#        mainLoop(update)
#
#mainLoop ("COMMAND TO BEGIN WITH") to

if update != "tell me more":
        print("Ended Program.")
    else:
        pos = "firstVar"
        mainLoop(update)

mainLoop("greeting")

To make a more advanced program, say a full-fledged game, obviously you would need much more than a single function. Instead, just set multiple variable names in main.py, which LevPy will interpret as different levels or rooms. In LevPy.py, you must then create functions that share the names of the variables with an underscore _ added afterwards. To refer from one function to another, just update the pos value. For example, if your new JSON var was called secondVar:

def firstVar_(update):
if update != "tell me more":
        pos = "secondVar"
        mainLoop(update)
    else:
        pos = "firstVar"
        mainLoop(update)

mainLoop("greeting")

Contributing/Issues

Anyone is welcome to contribute to LevPy; It is fully community-funded and open-source. To do so, just create a Pull Request and add your wanted code. Any issues or bugs in the code, feel free to make a New Issue, and I will attempt to figure out what is going-on.

License

Apache 2.0. See https://www.apache.org/licenses/LICENSE-2.0 for more details.

About

A simple framework for Python Text-Based games. Includes level-serving, etc. Tailored for use in my own game I'm working on.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages