Glossary

This explains common recurring terms used in the Evennia docs. It will be expanded as needed.

  • account - the player’s account on the game

  • admin-site - the Django web page for manipulating the database

  • attribute - persistent, custom data stored on typeclasses

  • channel - game communication channels

  • character - the player’s avatar in the game, controlled from account

  • core - a term used for the code distributed with Evennia proper

  • django - web framework Evennia uses for database access and web integration

  • field - a typeclass property representing a database column

  • git - the version-control system we use

  • github - the online hosting of our source code

  • migrate - updating the database schema

  • multisession mode` - a setting defining how users connect to Evennia

  • object - Python instance, general term or in-game typeclass

  • pip - the Python installer

  • player - the human connecting to the game with their client

  • puppet - when an account controls an in-game object

  • property - a python property

  • evenv - see virtualenv

  • repository - a store of source code + source history

  • script - a building block for custom storage, systems and time-keepint

  • session - represents one client connection

  • ticker - Allows to run events on a steady ‘tick’

  • twisted - networking engine responsible for Evennia’s event loop and communications

  • typeclass - Evennia’s database-connected Python class

  • upstream - see github

  • virtualenv - a Python program and way to make an isolated Python install


account

The term ‘account’ refers to the player’s unique account on the game. It is represented by the Account typeclass and holds things like email, password, configuration etc.

When a player connects to the game, they connect to their account. The account has no representation in the game world. Through their Account they can instead choose to puppet one (or more, depending on game mode) Characters in the game.

In the default multisession mode of Evennia, you immediately start puppeting a Character with the same name as your Account when you log in - mimicking how older servers used to work.

admin-site

This usually refers to Django’s Admin site or database-administration web page (link to Django docs). The admin site is an automatically generated web interface to the database (it can be customized extensively). It’s reachable from the admin link on the default Evennia website you get with your server.

attribute

The term Attribute should not be confused with (properties or fields. The Attribute represents arbitrary pieces of data that can be attached to any typeclassed entity in Evennia. Attributes allows storing new persistent data on typeclasses without changing their underlying database schemas. Read more about Attributes here.

channel

A Channel refers to an in-game communication channel. It’s an entity that people subscribe to and which re-distributes messages between all subscribers. Such subscribers default to being Accounts, for out-of-game communication but could also be Objects (usually Characters) if one wanted to adopt Channels for things like in-game walkie- talkies or phone systems. It is represented by the Channel typeclass. You can read more about the comm system here.

character

The Character is the term we use for the default avatar being puppeted by the account in the game world. It is represented by the Character typeclass (which is a child of Object). Many developers use children of this class to represent monsters and other NPCs. You can read more about it here.

django

Django is a professional and very popular Python web framework, similar to Rails for the Ruby language. It is one of Evennia’s central library dependencies (the other one is Twisted). Evennia uses Django for two main things - to map all database operations to Python and for structuring our web site.

Through Django, we can work with any supported database (SQlite3, Postgres, MySQL …) using generic Python instead of database-specific SQL: A database table is represented in Django as a Python class (called a model). An Python instance of such a class represents a row in that table.

There is usually no need to know the details of Django’s database handling in order to use Evennia - it will handle most of the complexity for you under the hood using what we call typeclasses. But should you need the power of Django you can always get it. Most commonly people want to use “raw” Django when doing more advanced/custom database queries than offered by Evennia’s default search functions. One will then need to read about Django’s querysets. Querysets are Python method calls on a special form that lets you build complex queries. They get converted into optimized SQL queries under the hood, suitable for your current database. [Here is our tutorial/explanation of Django queries](Tutorial-Searching- For-Objects#queries-in-django).

By the way, Django (and Evennia) does allow you to fall through and send raw SQL if you really want to. It’s highly unlikely to be needed though; the Django database abstraction is very, very powerful.

The other aspect where Evennia uses Django is for web integration. On one end Django gives an infrastructure for wiring Python functions (called views) to URLs: the view/function is called when a user goes that URL in their browser, enters data into a form etc. The return is the web page to show. Django also offers templating with features such as being able to add special markers in HTML where it will insert the values of Python variables on the fly (like showing the current player count on the web page). [Here is one of our tutorials on wiring up such a web page](Add-a-simple- new-web-page). Django also comes with the admin site, which automatically maps the database into a form accessible from a web browser.

contrib

Contribs are optional and often more game-specific code-snippets contributed by the Evennia community. They are distributed with Evennia in the contrib/ folder.

core

This term is sometimes used to represent the main Evennia library code suite, excluding its contrib directory. It can sometimes come up in code reviews, such as

Evennia is game-agnostic but this feature is for a particular game genre. So it does not belong in core. Better make it a contrib.

field

A field or database field in Evennia refers to a property on a typeclass directly linked to an underlying database column. Only a few fixed properties per typeclass are database fields but they are often tied to the core functionality of that base typeclass (for example Objects store its location as a field). In all other cases, attributes are used to add new persistent data to the typeclass. Read more about typeclass properties here.

git

Git is a version control tool. It allows us to track the development of the Evennia code by dividing it into units called commits. A ‘commit’ is sort of a save-spot - you save the current state of your code and can then come back to it later if later changes caused problems. By tracking commits we know what ‘version’ of the code we are currently using.

Evennia’s source code + its source history is jointly called a repository. This is centrally stored at our online home on GitHub. Everyone using or developing Evennia makes a ‘clone’ of this repository to their own computer - everyone automatically gets everything that is online, including all the code history.

Don’t confuse Git and GitHub. The former is the version control system. The latter is a website (run by a company) that allows you to upload source code controlled by Git for others to see (among other things).

Git allows multiple users from around the world to efficiently collaborate on Evennia’s code: People can make local commits on their cloned code. The commits they do can then be uploaded to GitHub and reviewed by the Evennia lead devs - and if the changes look ok they can be safely merged into the central Evennia code - and everyone can pull those changes to update their local copies.

Developers using Evennia often uses Git on their own games in the same way - to track their changes and to help collaboration with team mates. This is done completely independently of Evennia’s Git usage.

Common usage (for non-Evennia developers):

  • git clone <github-url> - clone an online repository to your computer. This is what you do when you ‘download’ Evennia. You only need to do this once.

  • git pull (inside local copy of repository) - sync your local repository with what is online.

Full usage of Git is way beyond the scope of this glossary. See Tutorial - version control for more info and links to the Git documentation.

migrate

This term is used for upgrading the database structure (it’s schema )to a new version. Most often this is due to Evennia’s upstream schema changing. When that happens you need to migrate that schema to the new version as well. Once you have used git to pull the latest changes, just cd into your game dir and run

evennia migrate

That should be it (see virtualenv if you get a warning that the evennia command is not available). See also Updating your game for more details.

Technically, migrations are shipped as little Python snippets of code that explains which database actions must be taken to upgrade from one version of the schema to the next. When you run the command above, those snippets are run in sequence.

multisession mode

This term refers to the MULTISESSION_MODE setting, which has a value of 0 to 3. The mode alters how players can connect to the game, such as how many Sessions a player can start with one account and how many Characters they can control at the same time. It is described in detail here.

github

Github is where Evennia’s source code and documentation is hosted. This online repository of code we also sometimes refer to as upstream.

GitHub is a business, offering free hosting to Open-source projects like Evennia. Despite the similarity in name, don’t confuse GitHub the website with Git, the versioning system. Github hosts Git repositories online and helps with collaboration and infrastructure. Git itself is a separate project.

object

In general Python (and other object-oriented languages), an object is what we call the instance of a class. But one of Evennia’s core typeclasses is also called “Object”. To separate these in the docs we try to use object to refer to the general term and capitalized Object when we refer to the typeclass.

The Object is a typeclass that represents all in-game entities, including Characters, rooms, trees, weapons etc. Read more about Objects here.

pip

pip comes with Python and is the main tool for installing third- party Python packages from the web. Once a python package is installed you can do import <packagename> in your Python code.

Common usage:

  • pip install <package-name> - install the given package along with all its dependencies.

  • pip search <name> - search Python’s central package repository PyPi for a package of that name.

  • pip install --upgrade <package_name> - upgrade a package you already have to the latest version.

  • pip install <packagename>==1.5 - install exactly a specific package version.

  • pip install <folder> - install a Python package you have downloaded earlier (or cloned using git).

  • pip install -e <folder> - install a local package by just making a soft link to the folder. This means that if the code in <folder> changes, the installed Python package is immediately updated. If not using -e, one would need to run pip install --upgrade <folder> every time to make the changes available when you import this package into your code. Evennia is installed this way.

For development, pip is usually used together with a virtualenv to install all packages and dependencies needed for a project in one, isolated location on the hard drive.

puppet

An account can take control and “play as” any Object. When doing so, we call this puppeting, (like puppeteering). Normally the entity being puppeted is of the Character subclass but it does not have to be.

property

A property is a general term used for properties on any Python object. The term also sometimes refers to the property built-in function of Python (read more here). Note the distinction between properties, fields and Attributes.

repository

A repository is a version control/git term. It represents a folder containing source code plus its versioning history.

In Git’s case, that history is stored in a hidden folder .git. If you ever feel the need to look into this folder you probably already know enough Git to know why.

The evennia folder you download from us with git clone is a repository. The code on GitHub is often referred to as the ‘online repository’ (or the upstream repository). If you put your game dir under version control, that of course becomes a repository as well.

script

When we refer to Scripts, we generally refer to the Script typeclass. Scripts are the mavericks of Evennia - they are like Objects but without any in-game existence. They are useful as custom places to store data but also as building blocks in persistent game systems. Since the can be initialized with timing capabilities they can also be used for long- time persistent time keeping (for fast updates other types of timers may be better though). Read more about Scripts here

session

A Session is a Python object representing a single client connection to the server. A given human player could connect to the game from different clients and each would get a Session (even if you did not allow them to actually log in and get access to an account).

Sessions are not typeclassed and has no database persistence. But since they always exist (also when not logged in), they share some common functionality with typeclasses that can be useful for certain game states.

tag

A Tag is a simple label one can attach to one or more objects in the game. Tagging is a powerful way to group entities and can also be used to indicate they have particular shared abilities. Tags are shared between objects (unlike Attributes).

ticker

The Ticker handler runs Evennia’s optional ‘ticker’ system. In other engines, such as DIKU, all game events are processed only at specific intervals called ‘ticks’. Evennia has no such technical limitation (events are processed whenever needed) but using a fixed tick can still be useful for certain types of game systems, like combat. Ticker Handler allows you to emulate any number of tick rates (not just one) and subscribe actions to be called when those ticks come around.

typeclass

The typeclass is an Evennia-specific term. A typeclass allows developers to work with database-persistent objects as if they were normal Python objects. It makes use of specific Django features to link a Python class to a database table. Sometimes we refer to such code entities as being typeclassed.

Evennia’s main typeclasses are Account, Object, Script and Channel. Children of the base class (such as Character) will use the same database table as the parent, but can have vastly different Python capabilities (and persistent features through Attributes and Tags. A typeclass can be coded and treated pretty much like any other Python class except it must inherit (at any distance) from one of the base typeclasses. Also, creating a new instance of a typeclass will add a new row to the database table to which it is linked.

The core typeclasses in the Evennia library are all named DefaultAccount, DefaultObject etc. When you initialize your [game dir] you automatically get empty children of these, called Account, Object etc that you can start working with.

twisted

Twisted is a heavy-duty asynchronous networking engine. It is one of Evennia’s two major library dependencies (the other one is Django). Twisted is what “runs” Evennia - it handles Evennia’s event loop. Twisted also has the building blocks we need to construct network protocols and communicate with the outside world; such as our MUD-custom version of Telnet, Telnet+SSL, SSH, webclient-websockets etc. Twisted also runs our integrated web server, serving the Django-based website for your game.

virtualenv

The standard virtualenv program comes with Python. It is used to isolate all Python packages needed by a given Python project into one folder (we call that folder evenv but it could be called anything). A package environment created this way is usually referred to as “a virtualenv”. If you ever try to run the evennia program and get an error saying something like “the command ‘evennia’ is not available” - it’s probably because your virtualenv is not ‘active’ yet (see below).

Usage:

  • virtualenv <name> - initialize a new virtualenv <name> in a new folder <name> in the current location. Called evenv in these docs.

  • virtualenv -p path/to/alternate/python_executable <name> - create a virtualenv using another Python version than default.

  • source <folder_name>/bin/activate(linux/mac) - activate the virtualenv in <folder_name>.

  • <folder_name>\Scripts\activate (windows)

  • deactivate - turn off the currently activated virtualenv.

A virtualenv is ‘activated’ only for the console/terminal it was started in, but it’s safe to activate the same virtualenv many times in different windows if you want. Once activated, all Python packages now installed with pip will install to evenv rather than to a global location like /usr/local/bin or C:\Program Files.

Note that if you have root/admin access you could install Evennia globally just fine, without using a virtualenv. It’s strongly discouraged and considered bad practice though. Experienced Python developers tend to rather create one new virtualenv per project they are working on, to keep the varying installs cleanly separated from one another.

When you execute Python code within this activated virtualenv, only those packages installed within will be possible to import into your code. So if you installed a Python package globally on your computer, you’ll need to install it again in your virtualenv.

Virtualenvs only deal with Python programs/packages. Other programs on your computer couldn’t care less if your virtualenv is active or not. So you could use git without the virtualenv being active, for example.

When your virtualenv is active you should see your console/terminal prompt change to

(evenv) ...

… or whatever name you gave the virtualenv when you initialized it.

We sometimes say that we are “in” the virtualenv when it’s active. But just to be clear - you never have to actually cd into the evenv folder. You can activate it from anywhere and will still be considered “in” the virtualenv wherever you go until you deactivate or close the console/terminal.

So, when do I need to activate my virtualenv? If the virtualenv is not active, none of the Python packages/programs you installed in it will be available to you. So at a minimum, it needs to be activated whenever you want to use the evennia command for any reason.