Montag, 26. Oktober 2015

GameMaker - Introduction

As discussed in my last post, I have chosen GameMaker: Studio as my development environment for game programming.
Now I would like to provide an easy entry for beginners and other interested parties to this IDE (Integrated Development Environment) by listing a few sources of information and tips and explaining the basics.

Official GameMaker: Studio site

Communities:

Documentation:

Resources:

Of course, there are countless other sources of information, but the best will be to use Google. ;)

The various versions of GameMaker: Studio
and Supported Platforms

Here we see the different versions of GameMaker: Studio and the various modules for additional platform support. This table I have simply taken over from the official GameMaker page.
[http://www.yoyogames.com/studio, 09/28/2015]
FeatureStandardProfessionalMaster Collection
PriceFree $149.99$799.99
Registration Required
Made with GameMaker Splash Screen in game
Unlimited resources
Texture Management
Multiple Configurations
Team Features
Developer Services Portal (DSP)
Mobile Testing (Android)
GameMaker: Player Export
Windows Desktop Module
Windows Desktop Module + YoYo Compiler + Export
Windows App Module + YoYo Compiler + Export
Mac OS X Module + Export
Ubuntu Linux Module + Export
HTML5 Module + Export
+$199.99
Android Module + YoYo Compiler + Export – x86, ARM, MIPS
+$299.99
iOS Module + YoYo Compiler + Export
+$299.99
Windows Phone 8 Module + YoYo Compiler + Export
+$299.99
Tizen Module + Export
+$199.99
Xbox® One Module + YoYo Compiler + Export
+$299.99
PlayStation® 4 Module + YoYo Compiler + Export
+$299.99
PlayStation® Vita Module + YoYo Compiler + Export
+$299.99
PlayStation® 3 Module + YoYo Compiler + Export
+$299.99
Includes all current & future modules in version 1.x


Basics of using GameMaker: Studio























Here we see the GUI (graphical user interface) of Game Maker IDE. On the left is a column with all resource types that can be used. These include:
  • Sprites (images that can be drawn)
  • Sounds (audio files for sound effects and background music)
  • Backgrounds (graphics for backgrounds)
  • Paths (predefined movements)
  • Scripts (code scripts: corresponds methods / functions)
  • Fonts
  • Timelines (predefined timings)
  • Objects (objects from which instances can be created)
  • Rooms (rooms / levels / maps)
  • Included Files (files integrated into the game)
  • Extensions (extensions for several platforms: JAR, DLL, ...)
  • Macros (constants and snippets)
  • Global Game Settings (settings for all platforms)
And that you may even want to see now how to tinker a first small program I wrote a little guide below, before I explain how the whole as such plays together:

How does it start?These instructions have been starting from GameMaker: Studio is written in latest version.

  1. At the very first, when a new project is created, a room is required.
    -> Right click on the Rooms folder - Create Room.

    (Now the "game" could already be started, but we would only get a blank window.)
  2. We need to create an object with which something should be done.
    -> Right click on the Objects folder - Create Object.

    -> Let's call it obj_hello.
  3. Now we open (if not already open) the newly created room by double-clicking on its name, jump into the Objects tab, and click right into the room to place the object obj_hello.
  4. In the created object (double-click on obj_hello in resource tree, if not already open) we create a new event:-> Add Event - Draw - Draw
  5. Here we use drag'n'drop to move the tile with the big A (Draw Text) from the right (in the draw tab) into the Actions list.
  6. We open this newly created command Draw Text by double click (also opens on its own after the pull-in) and write "Hello World" in the text field "text:" and click OK.
  7. With one click on the green arrow in the top menu (Run the game) of the IDE, we now start our "game" and see - a Hello World Program is "written".

What happens next?


Now you should have a first impression of how the GameMaker is constructed and works roughly:

  • You can drag objects into an editor and arrange as desired.
  • These objects function event oriented. For example, you can respond to:"Instance created," "instance clicked", "instance deleted", "instance1 collides with instance2" ...
  • And to these events you can drag instructions into, which will be triggered in turn, or only under certain conditions. It is also possible to drag a "piece of paper" and to write everything yourself (me as an experienced programmer wouldn't do it the other way).
Of course, there are countless ways that I have not indicated at all. If you feel like you want more, you can look for tutorials in the mentioned communities, on YouTube, or in other sources, or simply experiment yourself.
GameMaker itself also provides a small selection of tutorials and demos directly.

Important tip: If you are still inexperienced, you should definitely start with a project that is as small as possible! Even the idea to start a complex game, such as an RPG, keep it short and expand it later, probably suggests the wrong way.
Your way of programming and implementing things will constantly change and improve. You will eventually notice how inefficient or opaque your old code is and would like to do everything from scratch... It is extremely demotivating if you start something, but never brings to an end...


In my next post I want to share a little game with source code with youso you can look at everything in peace and understand it. It is a short held replica of a very old but still often played game that everyone knows. ;)
The source code is well commented in English, but not necessarily addressed to beginners. But so you have the opportunity to see how something can be done the "professional" way

Keine Kommentare:

Kommentar veröffentlichen