Difference between revisions of "Orbiter Programmer's Guide"

From LinuxMCE
Jump to: navigation, search
(HADesigner and QuickDesigner are used to create modifications to the interfaces, not the web admin.)
m (Moved the category to the top)
Line 1: Line 1:
 +
[[Category: Programmer's Guide]]
 +
[[Category: Orbiters]]
 +
 
<p>The Orbiter is really a [[LinuxMCE DCE Devices|LinuxMCE DCE Device]] just like any other.  The main class, Orbiter, is a normal **DCE command** implementation.  However, the Orbiter class was written so that it has no platform-specific functions, such as graphics and sound.  It handles the basic logic, and calls pure virtual functions that derived classes must implement to handle the platform-specific commands.  OrbiterSDL is derived from Orbiter and implements these functions using the SDL library, such as DrawRectangle, DrawImage, PlaySound, etc.  You will see that most of the code and virtually all of the logic is contained in the base Orbiter class.  Therefore, it is a fairly easy task to make a new version of Orbiter for a platform other than SDL, perhaps one that uses Windows SDK calls, or another image library.</p>
 
<p>The Orbiter is really a [[LinuxMCE DCE Devices|LinuxMCE DCE Device]] just like any other.  The main class, Orbiter, is a normal **DCE command** implementation.  However, the Orbiter class was written so that it has no platform-specific functions, such as graphics and sound.  It handles the basic logic, and calls pure virtual functions that derived classes must implement to handle the platform-specific commands.  OrbiterSDL is derived from Orbiter and implements these functions using the SDL library, such as DrawRectangle, DrawImage, PlaySound, etc.  You will see that most of the code and virtually all of the logic is contained in the base Orbiter class.  Therefore, it is a fairly easy task to make a new version of Orbiter for a platform other than SDL, perhaps one that uses Windows SDK calls, or another image library.</p>
 
<p>Orbiter devices are also embedded within [[Bluetooth Dongle]] for details.</p>
 
<p>Orbiter devices are also embedded within [[Bluetooth Dongle]] for details.</p>
 
<p>Use the [[Installing_HADesigner|HADesigner]] or  [[QuickDesigner]] to build an entirely new user interface of your own, or change LinuxMCE's stock UI.</p>
 
<p>Use the [[Installing_HADesigner|HADesigner]] or  [[QuickDesigner]] to build an entirely new user interface of your own, or change LinuxMCE's stock UI.</p>
 
[[Category: Programmer's Guide]]
 
[[Category: Orbiters]]
 

Revision as of 10:41, 10 October 2008


The Orbiter is really a LinuxMCE DCE Device just like any other. The main class, Orbiter, is a normal **DCE command** implementation. However, the Orbiter class was written so that it has no platform-specific functions, such as graphics and sound. It handles the basic logic, and calls pure virtual functions that derived classes must implement to handle the platform-specific commands. OrbiterSDL is derived from Orbiter and implements these functions using the SDL library, such as DrawRectangle, DrawImage, PlaySound, etc. You will see that most of the code and virtually all of the logic is contained in the base Orbiter class. Therefore, it is a fairly easy task to make a new version of Orbiter for a platform other than SDL, perhaps one that uses Windows SDK calls, or another image library.

Orbiter devices are also embedded within Bluetooth Dongle for details.

Use the HADesigner or QuickDesigner to build an entirely new user interface of your own, or change LinuxMCE's stock UI.