UMDCYL Game Framework


Keywords
hacktoberfest
License
MIT
Install
pip install cylgame==1.6.26

Documentation

Cybergames Youth League Game Framework (CYLGame)

Introduction

The University of Minnesota Duluth Cybergames Youth League (UMDCYL) is an annual online competition for high-school and middle-school students where students compete against each other by writing programs to control agents inside various video games. The first year, UMDCYL used Dirtbags Tanks as our game. "Tanks" is a fun and dynamic game where students use a variant of FORTH, called FORF, to program tanks to do battle in an arena. Scores are kept for individual tanks over time, so as tank programs improve, player rank changes.

We modified Tanks to provide a few game variants to support multiple league matches. The league was successful, however, we felt that mere variants of one game were not as interesting as distinctly different challenges, and the Tanks game did not lend itself to radically different games. One thing we really liked about Tanks is its use of FORF, because it was a "levelling agent" -- students who had programming experience had never worked with FORF (or probably any FORTH variant), which put all students on a more even playing field.

We decided to create our own framework based on the libtcod Roguelike library and Jon Beaulieu's Little Python (LP) project. Libtcod provided a tile-based interface with a variety of helper functions, while LP provided us with a custom programming language. While FORF provided a challenge to programmers (thinking in stacks and using reverse notation is a unique experience for most programmers), we also appreciated that LP was more like traditional languages, perhaps lowering entry barriers for students and making their experience more directly transferrable to other languages. In the end, libtcod was removed, but its behavior and lo-fi aesthetic is still apparent in CYLGames.

We maintain a server running UMDCYL games, and are happy to allow others to use the machine. Just contact pahp@d.umn.edu.

Games

We have created a number of games for the CYLGame framework, including:

Creating your own games for the CYLGame framework is relatively easy; the best way to do it is to look at existing source code.

Installing CYLGame and Playing a Game

See the generic instructions for installing CYLGame and playing a game.