Difference between revisions of "HOWTO-Backends"

From ScummVM :: Wiki
Jump to navigation Jump to search
m (fix typos, wording, wikify, the usual)
m (→‎Step by step: remove Lightkey's pointless comment)
Line 13: Line 13:


=== Step by step ===
=== Step by step ===
In the following I assume your port is named "foobar" (very clever, isn't it? :-)) ("snafu" would have been better :-P).
In the following I assume your port is named "foobar" (very clever, isn't it? :-)).


# Create a new <code>backends/platform</code> subdirectory matching your port name, i.e. <tt>backends/platform/foobar/</tt>.
# Create a new <code>backends/platform</code> subdirectory matching your port name, i.e. <tt>backends/platform/foobar/</tt>.

Revision as of 23:51, 2 May 2010

Introduction

This page is meant as a mini-HOWTO which roughly outlines the steps needed to add a new backend (port) to ScummVM. Before you embark on this quest, however, you should first check if one of the existing backends already suits your needs. In particular the SDL backend already supports many platforms, since SDL itself is quite portable.

But if you have determined that a new backend is what you need, the following should hopefully help you a bit with that. Feedback is welcome :-).

I will assume that you are at least roughly familiar with ScummVM, and have a fresh checkout of our Subversion repository. Note that it's strongly adviced to base your work on the current development version of ScummVM, and not on a release version. This will ease integration of your work.


Overview

Essentially, you will have to implement a subclass of the OSystem class. Our Doxygen documentation is your friend and should hopefully explain enough about this, see OSystem class.

You also need to either hook yourself into the regular ScummVM build system, or provide your own. Finally, you need to make ScummVM aware of your new backend by updating a couple source files (see below).

Step by step

In the following I assume your port is named "foobar" (very clever, isn't it? :-)).

  1. Create a new backends/platform subdirectory matching your port name, i.e. backends/platform/foobar/.
  2. Populate the new directory as you need to. If you want to use our regular build system, you will want to provide a backends/platform/foobar/module.mk file. Take a look at backends/platform/sdl/module.mk for an example.
  3. Subclass OSystem. You could copy the content of backends/platform/null/null.cpp to backends/platform/foobar/foobar.cpp to get a skeleton. As you progress, it might be helpful to look at other backends to learn how they do things.
  4. Make sure to provide the main function in your backend (the actual main function of ScummVM is scummvm_main, which your backend must invoke at some point).
  5. Instantiate the OSystem class and assign it to g_system, do that before calling scumm_main.
  6. Deinit properly after calling scumm_main, particularly call g_system->quit().
  7. If appropriate, edit configure to add your backend (this is only necessary if you are going to use the "./configure && make" build system).

Example of minimal main()

<syntax type="C++">int main(int argc, char *argv[]) {

   g_system = new OSystem_Foobar();
   assert(g_system);
   
   // Invoke the actual ScummVM main entry point:
   int res = scummvm_main(argc, argv);
   g_system->quit();
   return res;

}</syntax>

That's it. The difficult part is of course writing the OSystem subclass. More on that in the next section!

Subclassing OSystem

TODO: This section is meant to give some specific hints on creating a useful OSystem subclass. For now I can't really think of anything useful besides the obvious, and besides what we already say in other places... Take a look at OSystem class which contains lots of useful information. Also take a look at null.cpp to see what you have to implement, and peek at the SDL backend (which is our main backend and thus kind of a reference for all the others). And finally, take a look at common/system.h to see which methods are pure abstract, and thus must be implemented by you. Oh and of course: You can always talk to us on IRC or via email :-).

Misc notes

There is a Small Devices Backend in the works which is planned to be common for all devices with limited resources. If you are working on a backend for such a system, you may want to take a look on that page!

updateScreen() method

The updateScreen() method is called by an engine when it finished drawing something on the screen. It may happen quite often, up to several hundred times per second, but some devices have a restriction on how many times per second screen blitting takes place. For example, some NTSC version can not physically update more often than 60 Hz, and attempts to make it more often will result in the machine to hang.

If you are writing a backend for such a system, you may use code like this:

<syntax type="C++">void updateScreen() {

   uint32 newTime = getMillis();
   if (newTime - _oldTime < 1000 / MAX_FPS)
       return;
   _oldTime = newTime;
    // do actual screen update

}</syntax>

That should do the trick for you. This code has the slight disadvantage that it skips some screen updates though. This means there is a possibility that it skips an important screen update, which is not followed by any other screen update for some time, leading to some graphics glitch.