Project

General

Profile

How to use Scol » History » Version 1

iri, 09/22/2012 08:58 PM

1 1 iri
h1. How to use Scol ?
2
3
{{toc}}
4
5
To launch any Scol application, Scol must be already installed. To run an application, launch it must be sufficient (Scol will be called automatically). Sometimes, it need to launch Scol before.
6
7
h2. How to run Scol on a MS Windows system ?
8
9
Click on the _Start men_u, choose _Programs_ and _Scol Voyager_. The Scol icon (bluish) will display in the tasks bar (next to the clock). Click right on the icon top open a contextual menu.
10
11
You can launch the application from the file explorer : go to its directory and double-click on the *.scol file. Some Scol applications can be in the _Start Menu_ (depending on the installation way).
12
13
h2. How to run Scol on a GNU/Linux system
14
15
The version is not up to date and it need the terminal yet.
16
17
# Log in with the same user (see [[How to install Scol]])
18
# Go to in Scol install directory
19
# Run Scol :
20
    @$ ./scol &@
21
# If you want launch an application :
22
    @$ ./scol relative_path_to_the_application/script_file.scol@
23
24
If an error occurs, check the executable script named scol in the install directory :
25
26
# execution rights ?
27
# edit this script (with vi, emacs, nano, ...) and replace 
28
@SCOLPATH=$HOME/.../scol@ 
29
by 
30
@SCOLPATH=/home/my_login/.../scol@
31
32
h3. Create a launcher
33
34
Create a blank file anywhere (but accessible by this user). Add these lines (improve according to your needs) :
35
36
<pre>
37
#!/usr/bin/env bash
38
cd $HOME"/Bureau/scol/scol/"
39
./scol &
40
</pre>
41
42
Save it. Create a second blank file (one per application) and add theses lines :
43
44
<pre>
45
#!/usr/bin/env bash
46
cd $HOME"/Bureau/scol/scol/"
47
./scol ./partition/tutoriels/codes/8/launchSRV.scol
48
</pre>
49
50
Don't forget to give the execution rights at these two file :
51
@
52
$ chmod -x your_file@
53
54
To launch Scol, call the first script. To run an application, call the first script, next, call the second.
55
56
To have a graphical launcher, read the documentation of your desktop environment (GNOME, KDE, XFCE, ...).
57
58
h3. Scollinux :
59
60
This small tool in Python can help you : "ScolLinux":http://iri3d.free.fr/OUTILS/Scollinux [Fr].
61
62
h2. How to configure Scol ?
63
64
Here is the configuration for version 6.x
65
66
The Scol voyager (or Voyager) is the interface between the user and the operating system. This has a graphical interface to configure the Scol behavior and launch any Scol applications.
67
The Voyager can be partially removed and a product can be published like this (for experts only).
68
69
!http://www.irizone.net/scolring2/images/scol/voy_popup.png! Launch Scol and click right on the Scol icon (in the tasks bar) to display a contextual menu.
70
71
By default, the Scol is inactive except if a Scol application is running or if you launch Scol explicitly. This decreases the resources consumed by your computer.
72
Once Scol is started, click on the Scol icon with the right mouse button. In the displayed contextual menu (pic. above), select " _Settings_ ".
73
74
h3. General
75
76
!http://www.irizone.net/scolring2/images/scol/voyager5x_conf_gen.jpg! 
77
Select your favorite language and your pseudonym : the Voyager and some applications use these parameters when they launch themselves.
78
79
h3. SO3Engine
80
81
!http://www.irizone.net/scolring2/images/scol/voyager5x_conf_so3e.jpg! 
82
In " _SO3Engine settings_ ", you can configure the new 3d engine : OpenGL (better often) or DirectX renderer, etc. In an application, if the 3d crashes or the rendering is bad, you could change these settings.
83
84
h3. Legacy 3d engine
85
86
!http://www.irizone.net/scolring2/images/scol/voyager5x_conf_old3d.jpg! 
87
In the " _Old engine_ " (legacy 3d engine), select the best values according to the capacities of your system (a high number implies more resources). This is not applied in the recent softwares.
88
89
h3. Webcam
90
91
!http://www.irizone.net/scolring2/images/scol/voyager5x_conf_wcam.jpg! 
92
In " _Webcam_ " sub item : If you have a webcam, connect it and select the driver in the combo list. Check the image, if nothing, select another driver.
93
94
h3. Network
95
96
!http://www.irizone.net/scolring2/images/scol/voyager5x_conf_net.jpg! 
97
For the " _Network_ " settings : choose your external IP address. If you use a proxy, configure it : the "automatic setup" check box should be sufficient. Otherwise, you should set manuelly.
98
99
h3. Maintenance
100
101
!http://www.irizone.net/scolring2/images/scol/voyager5x_conf_misc.jpg! 
102
In " _Maintenance_ ", you can enable/disable write log files (helpful to debug Scol or an application).
103
The "developer mode" disable the closing Scol when no application is running. This is useful fora  coding.
104
The send of "statistics" is optional : Scol version, number of connections, date of the last connection and IP address. Only the development team has access to these data.
105
It is recommended to keep the "update" box checked to have Scol up to date.
106
107
The "Clear cache" button : remove all files in the Scol cache. Sometimes, a bad cache may make an application unstable ; clear the cache can resolve that.
108
109
The "Clear logs" button : remove all log files to increase the free disk space for example (if logs have been enabled !).
110
111
h2. Old versions
112
113
To configure a previous version of Scol, see [[How to configure a version 5.x]].