MHEG5 1.0
DTVKit MHEG5 1.0 API Documentation
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
mh5scene.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright © 2004 Ocean Blue Software Ltd
4  * Copyright © 2000 Koninklijke Philips Electronics N.V
5  *
6  * This file is part of a DTVKit Software Component
7  * You are permitted to copy, modify or distribute this file subject to the terms
8  * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org
9  *
10  * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
11  * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
12  * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
13  *
14  * If you or your organisation is not a member of DTVKit then you have access
15  * to this source code outside of the terms of the licence agreement
16  * and you are expected to delete this and any associated files immediately.
17  * Further information on DTVKit, membership and terms can be found at www.dtvkit.org
18  *******************************************************************************/
31 #ifndef _MH5SCENE_H_
32 #define _MH5SCENE_H_
33 
34 /*---includes for this file--------------------------------------------------*/
35 #include "mh5group.h"
36 
37 /*---Constant and macro definitions for public use---------------------------*/
38 
39 /*---Enumerations for public use---------------------------------------------*/
40 
41 /*---Global type defs for public use-----------------------------------------*/
42 typedef struct
43 {
44  /* Base class */
46 
47  /* Exchanged attributes */
49  MHEG5Int sceneCoordinateSystem[2];
54  /* Engine data */
56 } MHEG5Scene;
57 
58 /*---Global variable declarations for public use-----------------------------*/
59 
60 /*---Global Function prototypes for public use-------------------------------*/
61 
62 #ifdef MH5PRINTOUT
63 
70 void MHEG5scenePrint(MHEG5Scene *scene, char *out);
71 
72 #endif /* MH5PRINTOUT */
73 
79 /*
80  grant access to curent Scene
81  */
83 
89 void MHEG5sceneInit(MHEG5Scene *scene);
90 
91 
99 void MHEG5sceneFree(MHEG5Scene *scene);
100 
101 /*
102  Internal behaviours
103  */
104 void MHEG5scenePrepare(MHEG5Scene *scene);
105 void MHEG5sceneDestruct(MHEG5Scene *scene);
106 void MHEG5sceneActivate(MHEG5Scene *scene);
107 void MHEG5sceneDeactivate(MHEG5Scene *scene);
108 
109 /*
110  Actions
111  */
118 #ifdef INCLUDE_INPUT_MASK
119 MHEG5ErrorCode MHEG5setInputMask(MHEG5Root *target, MHEG5GList *params);
120 #endif /* INCLUDE_INPUT_MASK */
121 
122 
123 #endif /*_MH5SCENE_H_*/
void MHEG5sceneDestruct(MHEG5Scene *scene)
Destruct a scene object.
Definition: mh5scene.c:465
MHEG5ErrorCode MHEG5sendEventAction(MHEG5Root *target, MHEG5GList *params)
The actions inserts an event defined by the given parameters into the systems event queue...
Definition: mh5scene.c:672
MHEG5ErrorCode MHEG5setCursorShape(MHEG5Root *target, MHEG5GList *params)
This action sets a new cursor shape. Implementation of the SetCursorShape (NewCursorShape) action of ...
Definition: mh5scene.c:747
void MHEG5sceneFree(MHEG5Scene *scene)
Free off all memory associated with the specified object, including any exchanged attributes and inte...
Definition: mh5scene.c:416
Definition: mh5base.h:78
MHEG5SceneRatio_t aspectRatio
Definition: mh5scene.h:50
Definition: mh5group.h:47
Implementation of the Group class Description Defines the structure and behaviour of objects used as ...
MHEG5String inputMask
Definition: mh5scene.h:53
void MHEG5sceneActivate(MHEG5Scene *scene)
Apply the activation behaviour of the scene class. As this class has no own activation behaviour this...
Definition: mh5scene.c:493
void MHEG5sceneInit(MHEG5Scene *scene)
Initialise a scene object with default values.
Definition: mh5scene.c:399
long MHEG5Int
Definition: mh5base.h:69
MHEG5ErrorCode MHEG5setInputRegister(MHEG5Root *target, MHEG5GList *params)
Change the InputEventRegister attribute of the target Scene object. Changing the register will affect...
Definition: mh5scene.c:929
Definition: mh5base.h:165
Definition: mh5base.h:175
short MHEG5Bool
Definition: mh5base.h:67
MHEG5ErrorCode
Definition: mh5base.h:218
MHEG5ErrorCode MHEG5getCursorPosition(MHEG5Root *target, MHEG5GList *params)
The effect of this action is that the current cursor position is retrieved and stored in the given va...
Definition: mh5scene.c:869
MHEG5SceneRatio_t
Definition: mh5base.h:251
MHEG5Root * currentInteractible
Definition: mh5scene.h:55
MHEG5Bool movingCursor
Definition: mh5scene.h:51
MHEG5ErrorCode MHEG5transitionTo(MHEG5Root *target, MHEG5GList *params)
This function performs the TransitionTo action which leads to a new scene. Implementation of the Tran...
Definition: mh5scene.c:598
void MHEG5scenePrepare(MHEG5Scene *scene)
Apply the preparation behaviour of the scene class. As this class has no own preparation behaviour th...
Definition: mh5scene.c:432
MHEG5Int inputEventRegister
Definition: mh5scene.h:48
MHEG5Group group
Definition: mh5scene.h:45
MHEG5Scene * MHEG5getCurrentScene(void)
<Function description>="">
Definition: mh5scene.c:208
void MHEG5sceneDeactivate(MHEG5Scene *scene)
Apply the deactivation behaviour of the scene class. As this class has no own deactivation behaviour ...
Definition: mh5scene.c:543
Definition: mh5root.h:43
ParamList nextScenes
Definition: mh5scene.h:52
Definition: mh5scene.h:42
MHEG5ErrorCode MHEG5setCursorPosition(MHEG5Root *target, MHEG5GList *params)
This action sets the cursor position to the values given as parameters. Implementation of the SetCurs...
Definition: mh5scene.c:814