Project

General

Profile

How to use Scol » History » Version 2

iri, 10/04/2012 09:44 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 2 iri
Here is the configuration for version 6.x.
65
66
You should configure Scol to optimize these performances on your system and to custom its behavior.
67 1 iri
68
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.
69
The Voyager can be partially removed and a product can be published like this (for experts only).
70
71
!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.
72
73
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.
74
Once Scol is started, click on the Scol icon with the right mouse button. In the displayed contextual menu (pic. above), select " _Settings_ ".
75
76
h3. General
77
78
!http://www.irizone.net/scolring2/images/scol/voyager5x_conf_gen.jpg! 
79
Select your favorite language and your pseudonym : the Voyager and some applications use these parameters when they launch themselves.
80
81
h3. SO3Engine
82
83
!http://www.irizone.net/scolring2/images/scol/voyager5x_conf_so3e.jpg! 
84
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.
85
86
h3. Legacy 3d engine
87
88
!http://www.irizone.net/scolring2/images/scol/voyager5x_conf_old3d.jpg! 
89
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.
90
91
h3. Webcam
92
93
!http://www.irizone.net/scolring2/images/scol/voyager5x_conf_wcam.jpg! 
94
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.
95
96
h3. Network
97
98
!http://www.irizone.net/scolring2/images/scol/voyager5x_conf_net.jpg! 
99
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.
100
101
h3. Maintenance
102
103
!http://www.irizone.net/scolring2/images/scol/voyager5x_conf_misc.jpg! 
104
In " _Maintenance_ ", you can enable/disable write log files (helpful to debug Scol or an application).
105
The "developer mode" disable the closing Scol when no application is running. This is useful fora  coding.
106
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.
107
It is recommended to keep the "update" box checked to have Scol up to date.
108
109
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.
110
111
The "Clear logs" button : remove all log files to increase the free disk space for example (if logs have been enabled !).
112
113
h2. Old versions
114
115
To configure a previous version of Scol, see [[How to configure a version 5.x]].