Difference between revisions of "HOWTO-Backends"

Jump to navigation Jump to search
720 bytes removed ,  21:39, 19 April 2022
no edit summary
m (Updated link to OSystem class Doxygen documentation)
 
(3 intermediate revisions by 3 users not shown)
Line 8: Line 8:


=== Overview ===
=== 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 [http://doxygen.scummvm.org/d9/df4/classOSystem.html OSystem class].  
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 [https://doxygen.scummvm.org/d2/d38/class_o_system.html 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).
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).
Line 20: Line 20:
# Make sure to provide the <tt>main</tt> function in your backend (the actual main function of ScummVM is <tt>scummvm_main</tt>, which your backend must invoke at some point).
# Make sure to provide the <tt>main</tt> function in your backend (the actual main function of ScummVM is <tt>scummvm_main</tt>, which your backend must invoke at some point).
# Instantiate the OSystem class and assign it to <tt>g_system</tt>, do that before calling <tt>scumm_main</tt>.
# Instantiate the OSystem class and assign it to <tt>g_system</tt>, do that before calling <tt>scumm_main</tt>.
# Deinit properly after calling <tt>scumm_main</tt>, particularly call <tt>g_system->quit()</tt>.
# Deinit properly after calling <tt>scumm_main</tt>, particularly call <tt>g_system->destroy()</tt>.
# If appropriate, edit <tt>configure</tt> to add your backend (this is only necessary if you are going to use the "./configure && make" build system).
# If appropriate, edit <tt>configure</tt> to add your backend (this is only necessary if you are going to use the "./configure && make" build system).


==== Example of minimal main() ====
==== Example of minimal main() ====
<syntaxhighlight lang="cpp">int main(int argc, char *argv[]) {
<syntaxhighlight lang="cpp">int main(int argc, char *argv[]) {
// Create our OSystem instance
     g_system = new OSystem_Foobar();
     g_system = new OSystem_Foobar();
     assert(g_system);
     assert(g_system);
Line 30: Line 31:
     // Invoke the actual ScummVM main entry point:
     // Invoke the actual ScummVM main entry point:
     int res = scummvm_main(argc, argv);
     int res = scummvm_main(argc, argv);
    g_system->quit();
 
// Free OSystem
g_system->destroy();
 
     return res;
     return res;
}</syntaxhighlight>
}</syntaxhighlight>
Line 38: Line 42:
=== Subclassing OSystem ===
=== 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 [https://doxygen.scummvm.org/d2/d38/class_o_system.html 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 <tt>common/system.h</tt> 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 Channel|IRC]] or via [[Mailing lists|email]] :-).
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 [https://doxygen.scummvm.org/d2/d38/class_o_system.html 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 <tt>common/system.h</tt> 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 Channel|IRC]] or via [[Mailing lists|email]] :-).
=== Implementing subsystems ===
* [[HOWTO-Backends/File system]]
* [[HOWTO-Backends/Mutexes and Timers]]
* [[HOWTO-Backends/Graphics]]
* [[HOWTO-Backends/Events]]
* [[HOWTO-Backends/Audio]]
* [[HOWTO-Backends/Plugins]]
* [[HOWTO-Backends/Miscellaneous]]


==== Testing your backend ====
==== Testing your backend ====
We have a special game engine, called 'testbed'. Its only purpose is to perform series of tests which help engine authors to see correctness of their implementation.
We have a special game engine, called 'testbed'. Its only purpose is to perform series of tests which help backend authors to see correctness of their implementation.


To run the game, point ScummVM to directory <tt>&lt;scummvm sources root&gt;/dists/engine-data/testbed-audiocd-files/</tt> and then run. Follow the on-screen instructions.
To run the game, point ScummVM to directory <tt>&lt;scummvm sources root&gt;/dists/engine-data/testbed-audiocd-files/</tt> and then run. Follow the on-screen instructions.
Line 46: Line 59:
=== Misc notes ===
=== 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!
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:
<syntaxhighlight lang="cpp">void updateScreen() {
    uint32 newTime = getMillis();
    if (newTime - _oldTime < 1000 / MAX_FPS)
        return;
    _oldTime = newTime;
    // do actual screen update
}</syntaxhighlight>
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.
213

edits

Navigation menu