-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathREADME
73 lines (48 loc) · 2.16 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
Marmalade port of GameSWF
Orginal version http://tulrich.com/geekstuff/gameswf.html
Port Author
===========
Pete Hobson (twitter - @psk https://plus.google.com/102056279279488385121/)
Disclaimer form original project
================================
gameswf has bugs and quirks, and is not a complete implementation of Flash. The library as a whole is not highly optimized for memory use or speed. However, the text renderer is pretty decent, and the library is currently probably about as well implemented as the GUI library in the average commercial game. It has been used in many real projects but has a lot of rough edges.
How to use marmalade version
============================
Open and run demo GameSwfPortDemo.mkb
or, drop in GameSwf folder and associated mkf
Current State
=============
Compiles and runs on both x68 and ARM
Anti aliasing is not good quality
Doesn't handle device rotations well.
However, im interested in importing and rendering some simple UI assets, for that its working well
Problems
========
Heres my todo entries form the code. They are really due to my limited understanding
of c++, so if anyone can advise/fix id be grateful :)
utility.h
//TODO - pete - this log2 causses errors on arm - for now im wrapping it an a conditional
#ifdef I3D_ARCH_X86
inline float log2(float f) { return logf(f) / LN_2; }
#endif
gameswf.h
//TODO - pete - not sure what exported_module is?
exported_module render_handler* create_render_handler_iwgl();
gameswf_render_handler_iwgl.cpp
//TODO - pete - GL_BGRA undefined in IWGL? swapping to GL_RGBA
//glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, GL_BGRA, GL_UNSIGNED_BYTE, data);
glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, GL_RGBA, GL_UNSIGNED_BYTE, data);
GameMain.g (demo)
//TODO pete - glOrtho not defined?
//glOrtho(-OVERSIZE, OVERSIZE, OVERSIZE, -OVERSIZE, -1, 1);
container.h
//TODO - pete - fix strcasecmp infinite loop - redefine?
//define in _root.cpp
return strcmp(a, b);
//return strcasecmp(a, b);
tu_timer.cpp
//Pete H - no sys/timeb in marmalade
//#include <sys/timeb.h> // for ftime()
utility.cpp
TODO - Pete - disabled - look into mallifo struct on arm
struct mallinfo mi;