Project

General

Profile

Tutorials » History » Version 17

iri, 01/01/2012 10:52 PM

1 14 arkeon
h2. Tutorials
2
3
4 1 arkeon
//TODO
5
6
7 17 iri
h3. Scol basics
8 1 arkeon
9 14 arkeon
* Scol partitions
10 1 arkeon
11 14 arkeon
* Usm.ini configuration
12 1 arkeon
13 14 arkeon
* "Scol language":http://www.scolring.org/index.php/en/downloads?func=fileinfo&id=31
14 1 arkeon
15 14 arkeon
* For the comprehension of Scol Virtual Machine stack, see "Stack (data_structure)":http://en.wikipedia.org/wiki/Stack_(data_structure)
16
17 17 iri
* [[Examples]] written in Scol
18 14 arkeon
19
20 17 iri
h3. Howto compile sources
21 14 arkeon
22
* Scol launcher (scol.exe)
23
24
* Virtual machine (scol.dll)
25
26
* 2D OS library (libos2d.dll)
27
28
* 2D graphic library (lib2d.dll)
29
30
* Multi media library (mmedia.dll)
31
32
* Sql library (scolsql.dll)
33
34
* Serial library (serialio.dll)
35
36
* ActiveX library (Xtension.dll)
37
38
* Security SSA / RSA encryption (security.dll)
39
40
* SO3engine Ogre3D engine for scol (so3engine.dll)
41
42
* [[OpenGL]] engine for scol (zoogl.dll) (deprecated)
43
44
* Wii devices library (wiimote.dll)
45
46
* mozilla scol embeded plugin (npscol.dll)
47
48
* Internet Explorer scol embeded plugin (axscol.dll)
49
50
51
52 1 arkeon
53 17 iri
h3. Howto make a scol extension
54 14 arkeon
55
"Template source":https://arkeon.dyndns.org/svn-scol/trunk/plugins/template
56 1 arkeon
57 14 arkeon
58 15 iri
"Scol plugin SDK setup":https://arkeon.dyndns.org/svn-scol/trunk/tools/plugin%20sdk/release/setup.exe (only MS Windows !)
59
Scol SDK for windows (scol.h) : This file contain the basics Scol virtual machine manipulation methods (only MS Windows !)
60 1 arkeon
61
"Scol plugin SDK API Documentation":https://arkeon.dyndns.org/svn-scol/trunk/tools/plugin%20sdk/api
62
63
"Scol plugins and others":http://www.irizone.net//prog/index.php?article=vm__compilation_et_codeblocks (MS Windows and GNU/Linux, in french)
64 17 iri
65
66
h3. Miscellaneous
67
68
* How to convert *.lib to *.a on MS Windows with MingW32 ? Example with "scol_sdk" (adjust to your configuration/path) :
69
70
<pre>
71
cd X:
72
X:\>cd scol_sdk
73
X:\scol_sdk>c:\MinGW\bin\reimp.exe --dlltool "c:\MingW\bin\dlltool.exe" --as "c:\MingW\bin\as.exe" scol.lib
74
</pre>