<h1>Coding Introduction<aclass="headerlink"href="#coding-introduction"title="Permalink to this headline">¶</a></h1>
<p>Evennia allows for a lot of freedom when designing your game - but to code efficiently you still need to adopt some best practices as well as find a good place to start to learn.</p>
<p>Here are some pointers to get you going.</p>
<divclass="section"id="python">
<h2>Python<aclass="headerlink"href="#python"title="Permalink to this headline">¶</a></h2>
<p>Evennia is developed using Python. Even if you are more of a designer than a coder, it is wise to learn how to read and understand basic Python code. If you are new to Python, or need a refresher, take a look at our two-part <aclass="reference internal"href="Python-basic-introduction.html"><spanclass="doc">Python introduction</span></a>.</p>
<h2>Explore Evennia interactively<aclass="headerlink"href="#explore-evennia-interactively"title="Permalink to this headline">¶</a></h2>
<p>When new to Evennia it can be hard to find things or figure out what is available. Evennia offers a special interactive python shell that allows you to experiment and try out things. It’s recommended to use <aclass="reference external"href="http://ipython.org/">ipython</a> for this since the vanilla python prompt is very limited. Here are some simple commands to get started:</p>
<divclass="highlight-default notranslate"><divclass="highlight"><pre><span></span><spanclass="c1"># [open a new console/terminal]</span>
<spanclass="c1"># [activate your evennia virtualenv in this console/terminal]</span>
<spanclass="n">pip</span><spanclass="n">install</span><spanclass="n">ipython</span><spanclass="c1"># [only needed the first time]</span>
<p>That is, enter <codeclass="docutils literal notranslate"><spanclass="pre">evennia.</span></code> and press the <codeclass="docutils literal notranslate"><spanclass="pre"><TAB></span></code> key. This will show you all the resources made available at the top level of Evennia’s “flat API”. See the <aclass="reference internal"href="Evennia-API.html"><spanclass="doc">flat API</span></a> page for more info on how to explore it efficiently.</p>
<p>You can complement your exploration by peeking at the sections of the much more detailed <aclass="reference internal"href="Developer-Central.html"><spanclass="doc">Developer Central</span></a>. The <aclass="reference internal"href="Tutorials.html"><spanclass="doc">Tutorials</span></a> section also contains a growing collection of system- or implementation-specific help.</p>
<h2>Use a python syntax checker<aclass="headerlink"href="#use-a-python-syntax-checker"title="Permalink to this headline">¶</a></h2>
<p>Evennia works by importing your own modules and running them as part of the server. Whereas Evennia should just gracefully tell you what errors it finds, it can nevertheless be a good idea for you to check your code for simple syntax errors <em>before</em> you load it into the running server. There are many python syntax checkers out there. A fast and easy one is <aclass="reference external"href="https://pypi.python.org/pypi/pyflakes">pyflakes</a>, a more verbose one is <aclass="reference external"href="http://www.pylint.org/">pylint</a>. You can also check so that your code looks up to snuff using <aclass="reference external"href="https://pypi.python.org/pypi/pep8">pep8</a>. Even with a syntax checker you will not be able to catch every possible problem - some bugs or problems will only appear when you actually run the code. But using such a checker can be a good start to weed out the simple problems.</p>
</div>
<divclass="section"id="plan-before-you-code">
<h2>Plan before you code<aclass="headerlink"href="#plan-before-you-code"title="Permalink to this headline">¶</a></h2>
<p>Before you start coding away at your dream game, take a look at our <aclass="reference internal"href="Game-Planning.html"><spanclass="doc">Game Planning</span></a> page. It might hopefully help you avoid some common pitfalls and time sinks.</p>
<h2>Code in your game folder, not in the evennia/ repository<aclass="headerlink"href="#code-in-your-game-folder-not-in-the-evennia-repository"title="Permalink to this headline">¶</a></h2>
<p>As part of the Evennia setup you will create a game folder to host your game code. This is your home. You should <em>never</em> need to modify anything in the <codeclass="docutils literal notranslate"><spanclass="pre">evennia</span></code> library (anything you download from us, really). You import useful functionality from here and if you see code you like, copy&paste it out into your game folder and edit it there.</p>
<p>If you find that Evennia doesn’t support some functionality you need, make a <aclass="reference external"href="https://github.com/evennia/evennia/issues/new/choose">Feature Request</a> about it. Same goes for <aclass="reference external"href="https://github.com/evennia/evennia/issues/new?title=Bug%3a+%3Cdescriptive+title+here%3E&body=%23%23%23%23+Steps+to+reproduce+the+issue%3a%0D%0A%0D%0A1.+%0D%0A2.+%0D%0A3.+%0D%0A%0D%0A%23%23%23%23+What+I+expect+to+see+and+what+I+actually+see+%28tracebacks%2c+error+messages+etc%29%3a%0D%0A%0D%0A%0D%0A%0D%0A%23%23%23%23+Extra+information%2c+such+as+Evennia+revision%2frepo%2fbranch%2c+operating+system+and+ideas+for+how+to+solve%3a%0D%0A%0D%0A">bugs</a>. If you add features or fix bugs yourself, please consider <aclass="reference internal"href="Contributing.html"><spanclass="doc">Contributing</span></a> your changes upstream!</p>
</div>
<divclass="section"id="learn-to-read-tracebacks">
<h2>Learn to read tracebacks<aclass="headerlink"href="#learn-to-read-tracebacks"title="Permalink to this headline">¶</a></h2>
<p>Python is very good at reporting when and where things go wrong. A <em>traceback</em> shows everything you need to know about crashing code. The text can be pretty long, but you usually are only interested in the last bit, where it says what the error is and at which module and line number it happened - armed with this info you can resolve most problems.</p>
<p>Evennia will usually not show the full traceback in-game though. Instead the server outputs errors to the terminal/console from which you started Evennia in the first place. If you want more to show in-game you can add <codeclass="docutils literal notranslate"><spanclass="pre">IN_GAME_ERRORS</span><spanclass="pre">=</span><spanclass="pre">True</span></code> to your settings file. This will echo most (but not all) tracebacks both in-game as well as to the terminal/console. This is a potential security problem though, so don’t keep this active when your game goes into production.</p>
<blockquote>
<div><p>A common confusing error is finding that objects in-game are suddenly of the type <codeclass="docutils literal notranslate"><spanclass="pre">DefaultObject</span></code> rather than your custom typeclass. This happens when you introduce a critical Syntax error to the module holding your custom class. Since such a module is not valid Python, Evennia can’t load it at all. Instead of crashing, Evennia will then print the full traceback to the terminal/console and temporarily fall back to the safe <codeclass="docutils literal notranslate"><spanclass="pre">DefaultObject</span></code> until you fix the problem and reload.</p>
<h2>Docs are here to help you<aclass="headerlink"href="#docs-are-here-to-help-you"title="Permalink to this headline">¶</a></h2>
<p>Some people find reading documentation extremely dull and shun it out of principle. That’s your call, but reading docs really <em>does</em> help you, promise! Evennia’s documentation is pretty thorough and knowing what is possible can often give you a lot of new cool game ideas. That said, if you can’t find the answer in the docs, don’t be shy to ask questions! The <aclass="reference external"href="https://sites.google.com/site/evenniaserver/discussions">discussion group</a> and the <aclass="reference external"href="http://webchat.freenode.net/?channels=evennia">irc chat</a> are also there for you.</p>
</div>
<divclass="section"id="the-most-important-point">
<h2>The most important point<aclass="headerlink"href="#the-most-important-point"title="Permalink to this headline">¶</a></h2>
<li><aclass="reference internal"href="#use-a-python-syntax-checker">Use a python syntax checker</a></li>
<li><aclass="reference internal"href="#plan-before-you-code">Plan before you code</a></li>
<li><aclass="reference internal"href="#code-in-your-game-folder-not-in-the-evennia-repository">Code in your game folder, not in the evennia/ repository</a></li>
<li><aclass="reference internal"href="#learn-to-read-tracebacks">Learn to read tracebacks</a></li>
<li><aclass="reference internal"href="#docs-are-here-to-help-you">Docs are here to help you</a></li>
<li><aclass="reference internal"href="#the-most-important-point">The most important point</a></li>