MHEG5 1.0
DTVKit MHEG5 1.0 API Documentation
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
mh5base.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  *******************************************************************************/
26 #ifndef _MH5BASE_H
27 #define _MH5BASE_H
28 
29 /*---includes for this file--------------------------------------------------*/
30 
31 #include <stdio.h>
32 
33 #include "techtype.h"
34 #include "glue_debug.h"
35 
36 /*---Constant and macro definitions for public use---------------------------*/
37 
38 /* Rules for version number:
39  Realeases to customers : n.n
40  Minor releases to testers/internal : n.nbn
41  Modified minor releases : n.nbn+
42 
43  Example version sequence: 1.2, 1.3b0+, 1.3b1, 1.3b1+, 1.3b2, 1.3b2+, 1.3, ...
44  */
45 
46 /* Boolean values */
47 #define MHEG5FALSE (0)
48 #define MHEG5TRUE (-1)
49 
50 #ifndef MHG_STRNCMP
51 #define MHEG5strncmp(a, b, n) strncmp((char *)a, (char *)b, n)
52 #endif /* #ifdef MHG_STRNCMP */
53 
54 #ifndef MHG_STRCMP
55 #define MHEG5strcmp(a, b) strcmp((char *)a, (char *)b)
56 #endif /* #ifdef MHG_STRCMP */
57 
58 #define INVALID_GRP_REF 0
59 
60 /*---Enumerations for public use---------------------------------------------*/
61 
62 /*---Global type defs for public use-----------------------------------------*/
63 
64 /*
65  Simple Types
66  */
67 typedef short MHEG5Bool;
68 typedef short MHEG5Short;
69 typedef long MHEG5Int;
70 typedef unsigned char MHEG5Byte;
71 
72 typedef struct SMHEG5IntPair
73 {
76 } MHEG5IntPair;
77 
78 typedef struct sMHEG5String
79 {
82 } MHEG5String;
83 
84 /* forward declaration of group structure */
85 typedef struct sMHEG5Group sMHEG5Group;
86 
87 /* unique id for each new group created */
89 
90 /* forward declaration of pointer to group structure */
91 typedef struct sMHEG5Group *MH5GroupPtr;
92 
93 typedef struct sMH5GroupRef
94 {
95  MHEG5Int len; /* if (len == 0) 'pgrp' points to group, else len is string length of 'name' */
96  union
97  {
99  MH5GroupPtr group;
100  } ptr;
101 } MH5GroupRef;
102 
103 typedef struct sMHEG5ObjectReference
104 {
108 
109 
110 typedef enum
111 {
113  /* Synchronous events */
119  /* Asynchronous events */
126  /* dummy last event */
129 
130 
131 /*
132  special MEGA-Type for holding a lot of MHEG5 types
133  */
134 typedef enum
135 {
139 } E_ParamTypes;
140 
142 
143 typedef struct
144 {
148  union
149  {
156  } value;
157 } MHEG5Generic;
158 
159 
160 
161 
162 /*
163  List of Generic Items
164  */
166 {
167  MHEG5Generic generic;
168  struct sMHEG5GList *next;
169 };
170 
171 typedef struct sMHEG5GList MHEG5GList;
172 
174 
175 typedef struct sParamList
176 {
179 } ParamList;
180 
181 
182 
183 /*
184  MHEG5 Finals
185  */
186 typedef enum
187 {
196 } MHEG5Final;
197 
198 
199 typedef enum
200 {
203 
204 typedef enum
205 {
208 
209 typedef enum
210 {
213 
214 
215 /*
216  Error Codes
217  */
218 typedef enum
219 {
233  MHEG5ERR_IGNORE_ACTION /* Used by Launch, Spawn and TransitionTo */
235 
236 typedef struct sMHEG5FontBody
237 {
239  union
240  {
242  struct
243  {
246  } referenced;
247  } ref;
248 } MHEG5FontBody;
249 
250 
251 typedef enum
252 {
257 
258 /*---Global variable declarations for public use-----------------------------*/
259 
260 /*---Global Function prototypes for public use-------------------------------*/
261 
267 #ifdef MHG_TRACK_MEM
268 MHEG5String MHEG5stringCopyFunc(MHEG5String source, int line );
269 #define MHEG5stringCopy(s) MHEG5stringCopyFunc(s, __LINE__)
270 #else
272 #endif
273 MHEG5String MHEG5stringCopyChr(const char *source);
275 void MHEG5stringDestruct(MHEG5String *item);
279 
280 #ifdef MHEG5LOG
281 
282 char* MHEG5stringGet(MHEG5String source);
283 
284 #endif
285 
286 void MHEG5genericInit(MHEG5Generic *item);
287 void MHEG5genericSet(MHEG5Generic *item, MHEG5Int initialValue);
288 void MHEG5genericBSet(MHEG5Generic *item, MHEG5Bool initialValue);
289 void MHEG5genericSSet(MHEG5Generic *item, char *initialValue);
292 void MHEG5genericCopy(MHEG5Generic *dest, MHEG5Generic *src);
293 
294 void MHEG5gListDestruct(MHEG5GList *item);
296 void MHEG5colourInit(MHEG5Colour *item, MHEG5Int initialValue);
297 void MHEG5colourDestruct(MHEG5Colour *item);
298 
299 #ifdef MHG_STRNCMP
300 
301 int MHEG5strncmp(char *a, char *b, int n);
302 
303 #endif /* #ifdef MHG_STRNCMP */
304 
305 #ifdef MHG_STRCMP
306 
307 int MHEG5strcmp(char *a, char *b);
308 
309 #endif /* #ifdef MHG_STRCMP */
310 
315 unsigned long MHEG5random(void);
316 
317 
328 char* MHEG5safeStrcat(char *dest, size_t destLength,
329  const char *source);
330 
331 
332 #ifdef _WIN32_WCE
333 TCHAR* StrToUnicode(char *string);
334 char* StrFromUnicode(TCHAR *string);
335 #endif
336 
337 /*
338  Debug
339  */
340 #ifdef MH5PRINTOUT
341 void MHEG5classPrint(MHEG5Final class, char *out);
342 void MHEG5indent(char *out);
343 int MHEG5setIndent(int i);
344 void MHEG5incIndent(void);
345 void MHEG5decIndent(void);
346 void MHEG5newLine(char *out);
347 
348 #define MHEG_PRINT(out, str) STB_DebugLogPrintf(str)
349 #define MHEG5intPrint(i, out) STB_DebugLogPrintf("%ld", i)
350 #define MHEG5hexPrint(i, out) STB_DebugLogPrintf("%#x", i)
351 #endif /* #ifdef MH5PRINTOUT */
352 
353 #if defined(MHEG5LOG) || defined(MH5PRINTOUT)
354 void MHEG5eventPrint(MHEG5EventType e, char *out);
355 void MHEG5stringPrint(MHEG5String s, char *out);
356 void MHEG5objectrefPrint(MHEG5ObjectReference o, char *out);
357 void MHEG5boolPrint(MHEG5Bool b, char *out);
358 void MHEG5genericPrint(MHEG5Generic g, char *out, U8BIT dotype);
359 void MHEG5colourPrint(MHEG5Colour c, char *out);
360 void MHEG5gListPrint(MHEG5GList *l, char *out, U8BIT noTypeCnt);
361 void MHEG5cListPrint(MHEG5GList *l, char *out);
362 void MHEG5sdListPrint(MHEG5GList *l, char *out);
363 void MHEG5clrListPrint(MHEG5GList *l, char *out);
364 #endif /* #ifdef MHEG5LOG */
365 
366 #ifdef TRACING
367 extern int extra_trace_param;
368 #endif
369 
370 #endif /*_MH5BASE_H*/
Definition: mh5base.h:222
Definition: mh5base.h:138
Definition: mh5base.h:211
Definition: mh5base.h:118
Definition: mh5base.h:189
unsigned long MHEG5random(void)
Calculate and return a psuedo random number.
Definition: mh5base.c:1139
Definition: mh5base.h:124
Definition: mh5base.h:137
void MHEG5genericInit(MHEG5Generic *item)
Initialize an empty MHEG5Generic.
Definition: mh5base.c:832
Definition: mh5base.h:193
Definition: mh5base.h:136
Definition: mh5base.h:201
MHEG5GList * MHEG5gListCopy(MHEG5GList *list)
Copy a list of MHEG5Generic objects.
Definition: mh5base.c:966
void MHEG5colourDestruct(MHEG5Colour *item)
Destruct a MHEG5Colour object.
Definition: mh5base.c:1046
short MHEG5Short
Definition: mh5base.h:68
MH5GroupRef gref
Definition: mh5base.h:106
Definition: mh5base.h:192
MHEG5Bool referenced
Definition: mh5base.h:238
Definition: mh5base.h:229
Definition: mh5base.h:124
Definition: mh5base.h:138
Definition: mh5base.h:116
MH5GroupPtr group
Definition: mh5base.h:99
MHEG5IntPair p
Definition: mh5base.h:154
Definition: mh5base.h:227
MHEG5Bool MHEG5stringEqual(MHEG5String *s1, MHEG5String *s2)
Compare two Strings (case sensitive!)
Definition: mh5base.c:708
Definition: mh5base.h:193
struct sMHEG5String MHEG5String
Definition: mh5base.h:201
Definition: mh5base.h:220
MHEG5ObjectReference o
Definition: mh5base.h:155
void MHEG5colourInit(MHEG5Colour *item, MHEG5Int initialValue)
Initialize a MHEG5Colour with the initial value MHEG5Int.
Definition: mh5base.c:1035
MHEG5GList * params
Definition: mh5base.h:178
MHEG5String included
Definition: mh5base.h:241
Definition: mh5base.h:78
Definition: mh5base.h:226
Definition: mh5base.h:114
Definition: mh5base.h:136
Definition: mh5base.h:117
void MHEG5genericSet(MHEG5Generic *item, MHEG5Int initialValue)
Set a MHEG5Generic to the MHEG5Int value.
Definition: mh5base.c:994
Definition: mh5base.h:206
Debug tracing.
Definition: mh5base.h:121
struct sMHEG5Group * MH5GroupPtr
Definition: mh5base.h:91
Definition: mh5base.h:211
Definition: mh5base.h:193
Definition: mh5group.h:47
MHEG5Int len
Definition: mh5base.h:95
U8BIT isfirst
Definition: mh5base.h:146
MHEG5Int MH5GroupId
Definition: mh5base.h:88
MHEG5Int total
Definition: mh5base.h:177
Definition: mh5base.h:230
Definition: mh5base.h:193
struct SMHEG5IntPair MHEG5IntPair
Definition: mh5base.h:190
Definition: mh5base.h:201
void MHEG5genericCopy(MHEG5Generic *dest, MHEG5Generic *src)
Copy a MHEG5Generic.
Definition: mh5base.c:876
Definition: mh5base.h:118
Definition: mh5base.h:224
MHEG5Int MHEG5strToInt(MHEG5String string)
Convert a MHEG5String to a MHEG5Integer.
Definition: mh5base.c:737
MHEG5Final
Definition: mh5base.h:186
MHEG5Bool MHEG5genericEqual(MHEG5Generic *g1, MHEG5Generic *g2)
Compare two generic Variables.
Definition: mh5base.c:904
Definition: mh5base.h:122
MHEG5String MHEG5stringCopy(MHEG5String source)
<Function description>="">
Definition: mh5base.c:572
MHEG5EventType
Definition: mh5base.h:110
char * MHEG5safeStrcat(char *dest, size_t destLength, const char *source)
Perform a standard strcat restricted to the length of the destination. The dest string will always be...
Definition: mh5base.c:1171
Definition: mh5base.h:232
void MHEG5stringDestruct(MHEG5String *item)
Destruct a MHEG5String.
Definition: mh5base.c:684
Definition: mh5base.h:122
Definition: mh5base.h:206
MHEG5SliderStyle
Definition: mh5base.h:204
U8BIT indirect
Definition: mh5base.h:145
Definition: mh5base.h:137
Definition: mh5base.h:136
uint8_t U8BIT
Definition: techtype.h:93
long MHEG5Int
Definition: mh5base.h:69
MHEG5Orientation
Definition: mh5base.h:199
Definition: mh5base.h:123
MHEG5EventType e
Definition: mh5base.h:153
Definition: mh5base.h:121
Definition: mh5base.h:122
Definition: mh5base.h:93
Definition: mh5base.h:190
Definition: mh5base.h:114
Definition: mh5base.h:115
Definition: mh5base.h:191
void MHEG5gListDestruct(MHEG5GList *item)
Destruct a list of MHEG5Generic objects.
Definition: mh5base.c:948
Definition: mh5base.h:192
Definition: mh5base.h:112
Definition: mh5base.h:189
Definition: mh5base.h:194
Definition: mh5base.h:114
Definition: mh5base.h:236
Definition: mh5base.h:192
Definition: mh5base.h:253
Definition: mh5base.h:206
Definition: mh5base.h:127
Definition: mh5base.h:103
MHEG5Generic MHEG5Colour
Definition: mh5base.h:173
Definition: mh5base.h:165
Definition: mh5base.h:120
Definition: mh5base.h:120
MHEG5Int id
Definition: mh5base.h:105
MHEG5Int id
Definition: mh5base.h:244
MH5GroupRef grp
Definition: mh5base.h:245
Definition: mh5base.h:175
Definition: mh5base.h:117
MHEG5Byte * name
Definition: mh5base.h:98
Definition: mh5base.h:194
Definition: mh5base.h:136
short MHEG5Bool
Definition: mh5base.h:67
MHEG5ErrorCode
Definition: mh5base.h:218
unsigned char MHEG5Byte
Definition: mh5base.h:70
struct sMHEG5ObjectReference MHEG5ObjectReference
struct sMH5GroupRef MH5GroupRef
Definition: mh5base.h:189
struct sParamList ParamList
Definition: mh5base.h:115
Definition: mh5base.h:254
Definition: mh5base.h:193
MHEG5String MHEG5stringCat(MHEG5String string1, MHEG5String string2)
Concatenate two MHEG5Strings.
Definition: mh5base.c:646
Definition: mh5base.h:137
Definition: mh5base.h:116
MHEG5SceneRatio_t
Definition: mh5base.h:251
MHEG5Bool b
Definition: mh5base.h:151
Definition: mh5base.h:188
MHEG5String MHEG5intToStr(MHEG5Int i)
Convert MHEG5Int to MHEG5String.
Definition: mh5base.c:785
MHEG5Int len
Definition: mh5base.h:80
Definition: mh5base.h:194
Definition: mh5base.h:72
Definition: mh5base.h:231
Definition: mh5base.h:225
Definition: mh5base.h:125
struct sMHEG5GList MHEG5GList
Definition: mh5base.h:171
MHEG5Int i
Definition: mh5base.h:150
Definition: mh5base.h:125
void MHEG5genericDestruct(MHEG5Generic *item)
Destruct a MHEG5Generic.
Definition: mh5base.c:845
Definition: mh5base.h:255
MHEG5PushbuttonStyle
Definition: mh5base.h:209
void MHEG5genericBSet(MHEG5Generic *item, MHEG5Bool initialValue)
Set a MHEG5Generic to the MHEG5Bool value.
Definition: mh5base.c:1009
Definition: mh5base.h:143
#define MHEG5strncmp(a, b, n)
Definition: mh5base.h:51
uint16_t U16BIT
Definition: techtype.h:95
Definition: mh5base.h:194
MHEG5Int y
Definition: mh5base.h:75
System Wide Global Technical Data Type Definitions.
void MHEG5genericSSet(MHEG5Generic *item, char *initialValue)
Definition: mh5base.c:1017
MHEG5Bool MHEG5Boolean
Definition: mh5base.h:141
Definition: mh5base.h:228
Definition: mh5base.h:193
MHEG5String s
Definition: mh5base.h:152
MHEG5String MHEG5stringCopyChr(const char *source)
Copy the C-String source to a MHEG5String.
Definition: mh5base.c:610
Definition: mh5base.h:123
Definition: mh5base.h:221
Definition: mh5base.h:121
Definition: mh5base.h:137
Definition: mh5base.h:211
Definition: mh5base.h:195
struct sMHEG5FontBody MHEG5FontBody
Definition: mh5base.h:192
MHEG5Byte * data
Definition: mh5base.h:81
Definition: mh5base.h:124
union sMH5GroupRef::@4 ptr
Definition: mh5base.h:189
Definition: mh5base.h:188
Definition: mh5base.h:201
Definition: mh5base.h:138
Definition: mh5base.h:191
Definition: mh5base.h:114
Definition: mh5base.h:188
Definition: mh5base.h:188
Definition: mh5base.h:118
Definition: mh5base.h:233
Definition: mh5base.h:115
Definition: mh5base.h:191
Definition: mh5base.h:116
E_ParamTypes
Definition: mh5base.h:134
Definition: mh5base.h:138
struct sMHEG5GList * next
Definition: mh5base.h:168
Definition: mh5base.h:120
Definition: mh5base.h:192
Definition: mh5base.h:115
#define MHEG5strcmp(a, b)
Definition: mh5base.h:55
MHEG5Int x
Definition: mh5base.h:74
Definition: mh5base.h:188
Definition: mh5base.h:117
Definition: mh5base.h:194
Definition: mh5base.h:223
Definition: mh5base.h:136
Definition: mh5base.h:138
U16BIT type
Definition: mh5base.h:147