Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   Related Pages  

ClassDescC Class Reference

Plugin Class Descriptor class. More...

#include <ClassDescC.h>

Inheritance diagram for ClassDescC:

List of all members.

Public Methods

 ClassDescC ()
 Default constructor.

virtual ~ClassDescC ()
 Default destructor.

virtual void * create ()=0
 Demopaja calls this method when it needs new instance of the plugin class.

virtual PajaTypes::int32 get_classtype () const=0
 Returns the type of the plugin.

virtual ClassIdC get_class_id () const=0
 Returns unique class ID of the plugin class.

virtual SuperClassIdC get_super_class_id () const=0
 Returns super class ID of the plugin class.

virtual const char * get_name () const=0
 Returns the name of the plugin class as NULL terminated string.

virtual const char * get_desc () const=0
 Returns description of the plugin class as NULL terminated string.

virtual const char * get_author_name () const=0
 Returns the short description of the developer of the plugin class as NULL terminated string.

virtual const char * get_copyright_message () const=0
 Returns copyright message of the plugin class as NULL terminated string.

virtual const char * get_url () const=0
 Returns the URL of the developers homepage (or e-mail address) as NULL terminated string.

virtual const char * get_help_filename () const=0
 Returns the path name to the help file of the plugin class.

virtual PajaTypes::uint32 get_ext_count () const=0
 Returns number of file extensions used by the plugin class.

virtual const char * get_ext (PajaTypes::uint32 ui32Index) const=0
 Returns the extension of specified index as a NULL terminated string.

virtual PajaTypes::uint32 get_required_device_driver_count () const=0
 Returns the number of device driver this effect requires.

virtual const PluginClass::ClassIdCget_required_device_driver (PajaTypes::uint32 ui32Idx)=0
 Return the Class Id of a required device.


Detailed Description

Plugin Class Descriptor class.

Class descriptors provide the system information about the plugin classes in the DLL. Developer creates a class descriptor by deriving a class from ClassDescC and implementing the methods

This class is implemented by the plugin.


Constructor & Destructor Documentation

ClassDescC  
 

Default constructor.

virtual ~ClassDescC   [virtual]
 

Default destructor.


Member Function Documentation

virtual void* create   [pure virtual]
 

Demopaja calls this method when it needs new instance of the plugin class.

The plugin is responds by allocating a new insance of its plugin class. The instace should be derived from DataBlockI interface, which has the release method for deleting the instance.

Example Implementation:

            void*
            TGAImportDescC::create()
            {
                return (void*)TGAImportC::create_new();
            }

virtual const char* get_author_name   const [pure virtual]
 

Returns the short description of the developer of the plugin class as NULL terminated string.

Example Implementation:

            const char*
            TGAImportDescC::get_author_name() const
            {
                return "Mikko \"memon\" Mononen";
            }

virtual ClassIdC get_class_id   const [pure virtual]
 

Returns unique class ID of the plugin class.

Each plugin class must have unique class ID. The Demopaja system will identify the plugin classes (Importers and Effects) by its class ID. If two classes conflict the system will use the first class it finds. Use the random class ID generator provided with the SDK to generate new class IDs to avoid conflicts. This ID is for per class, you don't have to create new ID for every instance.

virtual PajaTypes::int32 get_classtype   const [pure virtual]
 

Returns the type of the plugin.

The return value can be either CLASS_TYPE_EFFECT or CLASS_TYPE_FILEIMPORT depending on the plugin class' type. Both values are defined in the ClassDescC.h.

virtual const char* get_copyright_message   const [pure virtual]
 

Returns copyright message of the plugin class as NULL terminated string.

Example Implementation

            const char*
            TGAImportDescC::get_copyright_message() const
            {
                return "Copyright (c) 2000 Moppi Productions";
            }

virtual const char* get_desc   const [pure virtual]
 

Returns description of the plugin class as NULL terminated string.

Example Implementation:

            const char*
            TGAImportDescC::get_desc() const
            {
                return "Importer for Targa (.TGA) images";
            }

virtual const char* get_ext PajaTypes::uint32    ui32Index const [pure virtual]
 

Returns the extension of specified index as a NULL terminated string.

Parameters:
ui32Index  A zero based index of the extension string get get.
The extension can be any length, but it should not include the leading ".".

Example Implementation:

            const char*
            TGAImportDescC::get_ext( uint32 ui32Index ) const
            {
                if( ui32Index == 0 )
                    return "tga";
                else if( ui32Index == 1 )
                    return "vda";
                else if( ui32Index == 2 )
                    return "icb";
                else if( ui32Index == 3 )
                    return "vst";
                return 0;
            }

virtual PajaTypes::uint32 get_ext_count   const [pure virtual]
 

Returns number of file extensions used by the plugin class.

This information is only used with the importer and exporter plugins. Effect plugin class descriptors should return zero.

Example Implementation:

            uint32
            TGAImportDescC::get_ext_count() const
            {
                return 4;
            }

virtual const char* get_help_filename   const [pure virtual]
 

Returns the path name to the help file of the plugin class.

This path name will be used to load the help file of a plugin class to be shown in the Help Viewer. The help files has to be in HTML format.

The path is relative to the Demopaja plugin directory.

Example Implementation:

            const char*
            TGAImportDescC::get_url() const
            {
                return "TGAImport.html";
            }

virtual const char* get_name   const [pure virtual]
 

Returns the name of the plugin class as NULL terminated string.

The name of the plugin class should be as descriptive as possible. This name is used all over the user interface so make it short. Name of below 15 characters is good.

Example Implementation:

            const char*
            TGAImportDescC::get_name() const
            {
                return "Targa Image";
            }

virtual const PluginClass::ClassIdC& get_required_device_driver PajaTypes::uint32    ui32Idx [pure virtual]
 

Return the Class Id of a required device.

Example implmentation:

            const ClassIdC&
            AVIImportDescC::get_required_device_driver( uint32 ui32Idx )
            {
                if( u3i2Idx == 0 )
                    return PajaSystem::CLASS_OPENGL_DEVICEDRIVER;
                return PajaSystem::NULL_CLASSID;
            }

virtual PajaTypes::uint32 get_required_device_driver_count   const [pure virtual]
 

Returns the number of device driver this effect requires.

Example implmentation:

            uint32
            AVIImportDescC::get_required_device_driver_count() const
            {
                return 1;
            }

virtual SuperClassIdC get_super_class_id   const [pure virtual]
 

Returns super class ID of the plugin class.

This method returns system defined constant which describes the class this plugin class is derived from. For example all effects returns SUPERCLASS_EFFECT (defined in EffectI.h).

virtual const char* get_url   const [pure virtual]
 

Returns the URL of the developers homepage (or e-mail address) as NULL terminated string.

This information will be used in the About Plugins dialog to forward user to the homepage of the plugin.

Example Implementation:

            const char*
            TGAImportDescC::get_url() const
            {
                return "http://moppi.inside.org/demopaja/";
            }


Moppi Demopaja SDK Documentation -- Copyright © 2000-2002 Moppi Productions