GAMR1520: Markup languages and scripting

python logo javascript logo

This module covers the dynamically typed languages python and javascript.

The module materials are organised as a series of interlinked web pages containing lecture slides, introductory materials, example code and exercises which you should attempt. You will find the same pages are linked multiple times, often as reminders of the basic concepts. Please read each page at least once and use your judgement as to whether you need to review concepts or can skip over them when they are linked again.

Week 1: Introducing python

In the first week we will be looking at the fundamentals of programming in python. Beginning with the very basics and moving towards writing basic scripts.

Lectures

Exercises

Week 2: Files, functions and classes

With a good understanding of the basics we can move on to loading complex data into memory for processing. This week we will play with some data and learn how to read and write data directly from/to files in common JSON and CSV file formats. We will then go on to create some more structured code using functions and classes.

Lectures

Exercises

Week 3: Practical python, some useful libraries

This week we will be looking at two very useful python libraries. We will continue our data processing experiments by grabbing some JSON data from the web using urllib.request to make HTTP requests. We will also spend some time looking at the user interface toolkit tkinter and built a simple object-oriented GUI application.

Lectures

Exercises

Week 4: Unit testing

This week is the final week of python. The focus is on unit testing in preparation for the python assignment. Unit tests allow us to write code that acts as a specification for how other code should behave. With unit tests, we can automatically test whether our code produces given outputs when given certain inputs. This not only allows us to know whether code is working, it also highlights places where we introduce bugs.

Lectures

Exercises

Week 5: Introducing Javascript

This week we will be providing an introduction to using the JavaScript language within a web browser. We will cover the basics of HTML templates, how to link JavaScript code, a brief introduction to the language, its data types, variables and data structures, we will introduce control flow and functions, event listeners and finally, the HTML canvas.

Lectures

Exercises

Week 6: Game-like systems

This week we will be introducing a basic pattern for developing animatable canvases and game-like systems. We will move from a basic pattern to a robust and organised object-oriented approach using ES6 modules to organise our code across multiple files.

Lectures

Exercises