aboutsummaryrefslogtreecommitdiff
path: root/robottino/all_versions/v4.0/src
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2026-03-26 19:27:18 +0100
committerSebastiano Tronto <sebastiano@tronto.net>2026-03-26 19:27:18 +0100
commit7167b4341ef290d56fb96e2af10883a4b925d83b (patch)
tree1eb1b9e5ab82ddd89540e68d6b22ae69514575c6 /robottino/all_versions/v4.0/src
downloadancient-projects-7167b4341ef290d56fb96e2af10883a4b925d83b.tar.gz
ancient-projects-7167b4341ef290d56fb96e2af10883a4b925d83b.zip
I found my old code!HEADmaster
Diffstat (limited to 'robottino/all_versions/v4.0/src')
-rwxr-xr-xrobottino/all_versions/v4.0/src/Frame.java66
-rwxr-xr-xrobottino/all_versions/v4.0/src/List.java74
-rwxr-xr-xrobottino/all_versions/v4.0/src/Main.java36
-rwxr-xr-xrobottino/all_versions/v4.0/src/Robot.java126
-rwxr-xr-xrobottino/all_versions/v4.0/src/RobotFrame.java179
-rwxr-xr-xrobottino/all_versions/v4.0/src/img/laoff.gifbin0 -> 4148 bytes
-rwxr-xr-xrobottino/all_versions/v4.0/src/img/laon.gifbin0 -> 4151 bytes
-rwxr-xr-xrobottino/all_versions/v4.0/src/img/lloff.gifbin0 -> 4552 bytes
-rwxr-xr-xrobottino/all_versions/v4.0/src/img/llon.gifbin0 -> 2557 bytes
-rwxr-xr-xrobottino/all_versions/v4.0/src/img/raoff.gifbin0 -> 5137 bytes
-rwxr-xr-xrobottino/all_versions/v4.0/src/img/raon.gifbin0 -> 5121 bytes
-rwxr-xr-xrobottino/all_versions/v4.0/src/img/rloff.gifbin0 -> 4802 bytes
-rwxr-xr-xrobottino/all_versions/v4.0/src/img/rlon.gifbin0 -> 2705 bytes
-rwxr-xr-xrobottino/all_versions/v4.0/src/img/robot.gifbin0 -> 15158 bytes
14 files changed, 481 insertions, 0 deletions
diff --git a/robottino/all_versions/v4.0/src/Frame.java b/robottino/all_versions/v4.0/src/Frame.java
new file mode 100755
index 0000000..8ec087b
--- /dev/null
+++ b/robottino/all_versions/v4.0/src/Frame.java
@@ -0,0 +1,66 @@
1/*
2Copyright 2008, 2009 Sebastiano Tronto <sebastiano@luganega.org>
3
4This file is part of Robottino.
5
6 Robottino is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 Robottino is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Robottino; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19
20*/
21
22import javax.swing.*;
23import java.awt.event.*;
24
25public class Frame extends JFrame {
26 public class Listener implements ActionListener {
27 public void actionPerformed( ActionEvent e ) {
28 if ( e.getSource() == exit )
29 System.exit(0);
30 else if ( e.getSource() == informazioni )
31 JOptionPane.showMessageDialog( main.frame, "info", "Robottino v4.0 - Informazioni", JOptionPane.INFORMATION_MESSAGE );
32 else if ( e.getSource() == nuovo ) {
33 String nome = JOptionPane.showInputDialog( main.frame, "Inserire il nome del nuovo robottino:", "Robot " + ( ++main.robots ) );
34 if ( nome != null )
35 main.list.newRobot( nome );
36 }
37 }
38 }
39 public static Listener listener;
40 public static Main main;
41 public static JMenuBar barraMenu = new JMenuBar();
42 public static JMenu file = new JMenu( "File" );
43 public static JMenu info = new JMenu( "?" );
44 public static JMenuItem exit = new JMenuItem( "Esci" );
45 public static JMenuItem informazioni = new JMenuItem( "Informazioni" );
46 public static JMenuItem nuovo = new JMenuItem( "Nuovo Robot" );
47 public Frame() {
48 super( "Robottino versione 4.0" );
49 listener = new Listener();
50 main = new Main();
51 exit.addActionListener( listener );
52 exit.setMnemonic( 'E' );
53 informazioni.addActionListener( listener );
54 informazioni.setMnemonic( 'I' );
55 nuovo.addActionListener( listener );
56 nuovo.setMnemonic( 'N' );
57 file.add( exit );
58 file.add( nuovo );
59 file.setMnemonic( 'F' );
60 info.add( informazioni );
61 info.setMnemonic( '?' );
62 barraMenu.add( file );
63 barraMenu.add( info );
64 setJMenuBar( barraMenu );
65 }
66} \ No newline at end of file
diff --git a/robottino/all_versions/v4.0/src/List.java b/robottino/all_versions/v4.0/src/List.java
new file mode 100755
index 0000000..b4f9982
--- /dev/null
+++ b/robottino/all_versions/v4.0/src/List.java
@@ -0,0 +1,74 @@
1/*
2Copyright 2008, 2009 Sebastiano Tronto <sebastiano@luganega.org>
3
4This file is part of Robottino.
5
6 Robottino is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 Robottino is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Robottino; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19
20*/
21
22import javax.swing.JOptionPane;
23
24public class List {
25 public static Main main = new Main();
26 public Robot primoRobot, ultimoRobot;
27 public List() {
28 primoRobot = ultimoRobot = null;
29 }
30 public boolean vuota() {
31 return primoRobot == null;
32 }
33 public Robot getRobot( String nome ) {
34 Robot i = primoRobot;
35 for ( ; !i.nomeRobot.equals( nome ); i = i.prossimoRobot ) ;
36 return i;
37 }
38 public void newRobot() {
39 newRobot( false, false, false, false, "" );
40 }
41 public void newRobot( String nome ) {
42 newRobot( false, false, false, false, nome );
43 }
44 public void newRobot( boolean la, boolean ra, boolean ll, boolean rl, String nome ) {
45 if ( vuota() )
46 primoRobot = ultimoRobot = new Robot( la, ra, ll, rl, nome, null, null );
47 else {
48 ultimoRobot = new Robot( la, ra, ll, rl, nome, ultimoRobot, null );
49 ultimoRobot.precedenteRobot.prossimoRobot = ultimoRobot;
50 }
51 }
52 public void deleteRobot( String nome ) {
53 if ( vuota() )
54 JOptionPane.showMessageDialog( main.frame, "Nessun robottino presente. Impossibile cancellarne uno", "Robottino v4.0 - Errore", JOptionPane.ERROR_MESSAGE );
55 else {
56 Robot i = primoRobot;
57 for ( ; !i.nomeRobot.equals( nome ); i = i.prossimoRobot ) ;
58 if ( i.precedenteRobot != null )
59 i.precedenteRobot.prossimoRobot = i.prossimoRobot;
60 else
61 primoRobot = i.prossimoRobot;
62 if ( i.prossimoRobot != null )
63 i.prossimoRobot.precedenteRobot = i.precedenteRobot;
64 else
65 ultimoRobot = i.precedenteRobot;
66 }
67 }
68 public void printList() {
69 String lista = "";
70 for ( Robot i = primoRobot; i != null; i = i.prossimoRobot )
71 lista += i.getName() + " ";
72 JOptionPane.showMessageDialog( main.frame, lista, "Robottino v4.0 - Robottini Presenti", JOptionPane.PLAIN_MESSAGE );
73 }
74} \ No newline at end of file
diff --git a/robottino/all_versions/v4.0/src/Main.java b/robottino/all_versions/v4.0/src/Main.java
new file mode 100755
index 0000000..4ef0206
--- /dev/null
+++ b/robottino/all_versions/v4.0/src/Main.java
@@ -0,0 +1,36 @@
1/*
2Copyright 2008, 2009 Sebastiano Tronto <sebastiano@luganega.org>
3
4This file is part of Robottino.
5
6 Robottino is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 Robottino is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Robottino; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19
20*/
21
22import javax.swing.JFrame;
23
24public class Main {
25 public static int robots;
26 public static List list;
27 public static Frame frame;
28 public static void main ( String args[] ) {
29 robots = 0;
30 list = new List();
31 frame = new Frame();
32 frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
33 frame.setSize( 350, 150 );
34 frame.setVisible( true );
35 }
36} \ No newline at end of file
diff --git a/robottino/all_versions/v4.0/src/Robot.java b/robottino/all_versions/v4.0/src/Robot.java
new file mode 100755
index 0000000..bf0e186
--- /dev/null
+++ b/robottino/all_versions/v4.0/src/Robot.java
@@ -0,0 +1,126 @@
1/*
2Copyright 2008, 2009 Sebastiano Tronto <sebastiano@luganega.org>
3
4This file is part of Robottino.
5
6 Robottino is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 Robottino is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Robottino; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19
20*/
21
22import javax.swing.*;
23import java.awt.event.*;
24import java.awt.*;
25
26public class Robot {
27 public static Main main = new Main();
28 boolean leftArm, rightArm, leftLeg, rightLeg;
29 String nomeRobot;
30 Robot precedenteRobot, prossimoRobot;
31 RobotFrame robotFrame;
32 Robot() {
33 this( false, false, false, false, "", main.list.ultimoRobot, null );
34 }
35 Robot( String nome ) {
36 this ( false, false, false, false, nome, main.list.ultimoRobot, null );
37 }
38 Robot( boolean la, boolean ra, boolean ll, boolean rl, String nome, Robot prec, Robot prox ) {
39 leftArm = la;
40 rightArm = ra;
41 leftLeg = ll;
42 rightLeg = rl;
43 nomeRobot = nome;
44 precedenteRobot = prec;
45 prossimoRobot = prox;
46 robotFrame = new RobotFrame( nome );
47 robotFrame.setSize( 350, 550 );
48 robotFrame.setVisible( true );
49 robotFrame.setDefaultCloseOperation( JFrame.DO_NOTHING_ON_CLOSE );
50 robotFrame.addWindowListener(
51 new WindowAdapter() {
52 public void windowClosing( WindowEvent e ) {
53 int selezione = JOptionPane.showOptionDialog( Robot.this.robotFrame, "Eliminare il robottino " + Robot.this.getName() + " ?", "Robottino v4.0 - Cancellazione robottino", JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE, null, new String[] { "Si", "No" }, "No" );
54 if ( selezione == JOptionPane.YES_OPTION ) {
55 main.list.deleteRobot( Robot.this.getName() );
56 robotFrame.dispose();
57 }
58 else {
59 try {
60 Thread.currentThread().sleep( 50 );
61 } catch ( Exception e2 ) {}
62 robotFrame.repaint();
63 }
64 }
65 public void windowActivated( WindowEvent e ) {
66 robotFrame.repaint();
67 }
68 }
69 );
70 robotFrame.addComponentListener(
71 new ComponentAdapter() {
72 public void componentMoved( ComponentEvent e ) {
73 try {
74 Thread.currentThread().sleep( 50 );
75 } catch ( Exception e2 ) {}
76 robotFrame.repaint();
77 }
78 public void componentResized( ComponentEvent e ) {
79 try {
80 Thread.currentThread().sleep( 50 );
81 } catch ( Exception e2 ) {}
82 robotFrame.repaint();
83 }
84 }
85 );
86 }
87 void setLA( boolean la ) {
88 setPositions( la, this.rightArm, this.leftLeg, this.rightLeg );
89 }
90 void setRA( boolean ra ) {
91 setPositions( this.leftArm, ra, this.leftLeg, this.rightLeg );
92 }
93 void setLL( boolean ll ) {
94 setPositions( this.leftArm, this.rightArm, ll, this.rightLeg );
95 }
96 void setRL( boolean rl ) {
97 setPositions( this.leftArm, this.rightArm, this.leftLeg, rl );
98 }
99 void setPositions( boolean la, boolean ra, boolean ll, boolean rl ) {
100 leftArm = la;
101 rightArm = ra;
102 leftLeg = ll;
103 rightLeg = rl;
104 }
105 void setName( String nome ) {
106 nomeRobot = nome;
107 }
108 boolean getLA() {
109 return leftArm;
110 }
111 boolean getRA() {
112 return rightArm;
113 }
114 boolean getLL() {
115 return leftLeg;
116 }
117 boolean getRL() {
118 return rightLeg;
119 }
120 String getName() {
121 return nomeRobot;
122 }
123 Robot getNext() {
124 return prossimoRobot;
125 }
126} \ No newline at end of file
diff --git a/robottino/all_versions/v4.0/src/RobotFrame.java b/robottino/all_versions/v4.0/src/RobotFrame.java
new file mode 100755
index 0000000..ad7067f
--- /dev/null
+++ b/robottino/all_versions/v4.0/src/RobotFrame.java
@@ -0,0 +1,179 @@
1/*
2Copyright 2008, 2009 Sebastiano Tronto <sebastiano@luganega.org>
3
4This file is part of Robottino.
5
6 Robottino is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 Robottino is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Robottino; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19
20*/
21
22import javax.swing.*;
23import java.awt.event.*;
24import java.awt.*;
25
26public class RobotFrame extends JFrame implements ActionListener {
27 public static int rax, ray, lax, lay, rlx, rly, llx, lly;
28 public static Main main;
29 public static ImageIcon ra, la, rl, ll, body;
30 public static JMenuBar barraMenu;
31 public static JMenu modifica, raMenu, laMenu, rlMenu, llMenu;
32 public static JMenuItem raonMenuItem, raoffMenuItem, rachangeMenuItem, laonMenuItem, laoffMenuItem, lachangeMenuItem;
33 public static JMenuItem rlonMenuItem, rloffMenuItem, rlchangeMenuItem, llonMenuItem, lloffMenuItem, llchangeMenuItem;
34 RobotFrame( String titolo ) {
35 super ( titolo );
36 rax = 66;
37 ray = 248;
38 lax = 225;
39 lay = 242;
40 rlx = 84;
41 rly = 367;
42 llx = 148;
43 lly = 367;
44 ra = new ImageIcon( ClassLoader.getSystemResource( "img/raoff.gif" ) );
45 la = new ImageIcon( ClassLoader.getSystemResource( "img/laoff.gif" ) );
46 rl = new ImageIcon( ClassLoader.getSystemResource( "img/rloff.gif" ) );
47 ll = new ImageIcon( ClassLoader.getSystemResource( "img/lloff.gif" ) );
48 body = new ImageIcon( ClassLoader.getSystemResource( "img/robot.gif" ) );
49 raonMenuItem = new JMenuItem( "Alza" );
50 laonMenuItem = new JMenuItem( "Alza" );
51 rlonMenuItem = new JMenuItem( "Alza" );
52 llonMenuItem = new JMenuItem( "Alza" );
53 raoffMenuItem = new JMenuItem( "Abbassa" );
54 laoffMenuItem = new JMenuItem( "Abbassa" );
55 rloffMenuItem = new JMenuItem( "Abbassa" );
56 lloffMenuItem = new JMenuItem( "Abbassa" );
57 rachangeMenuItem = new JMenuItem( "Cambia posizione" );
58 lachangeMenuItem = new JMenuItem( "Cambia posizione" );
59 rlchangeMenuItem = new JMenuItem( "Cambia posizione" );
60 llchangeMenuItem = new JMenuItem( "Cambia posizione" );
61 raonMenuItem.addActionListener( this );
62 raoffMenuItem.addActionListener( this );
63 rachangeMenuItem.addActionListener( this );
64 laonMenuItem.addActionListener( this );
65 laoffMenuItem.addActionListener( this );
66 lachangeMenuItem.addActionListener( this );
67 rlonMenuItem.addActionListener( this );
68 rloffMenuItem.addActionListener( this );
69 rlchangeMenuItem.addActionListener( this );
70 llonMenuItem.addActionListener( this );
71 lloffMenuItem.addActionListener( this );
72 llchangeMenuItem.addActionListener( this );
73 raMenu = new JMenu( "Braccio destro" );
74 raMenu.add( raonMenuItem );
75 raMenu.add( raoffMenuItem );
76 raMenu.add( rachangeMenuItem );
77 laMenu = new JMenu( "Braccio sinistro" );
78 laMenu.add( laonMenuItem );
79 laMenu.add( laoffMenuItem );
80 laMenu.add( lachangeMenuItem );
81 rlMenu = new JMenu( "Gamba destra" );
82 rlMenu.add( rlonMenuItem );
83 rlMenu.add( rloffMenuItem );
84 rlMenu.add( rlchangeMenuItem );
85 llMenu = new JMenu( "Gamba sinistra" );
86 llMenu.add( llonMenuItem );
87 llMenu.add( lloffMenuItem );
88 llMenu.add( llchangeMenuItem );
89 modifica = new JMenu( "Modifica" );
90 modifica.add( raMenu );
91 modifica.add( laMenu );
92 modifica.add( rlMenu );
93 modifica.add( llMenu );
94 barraMenu = new JMenuBar();
95 barraMenu.add( modifica );
96 setJMenuBar( barraMenu );
97 }
98 public void paint ( Graphics g ) {
99 super.paint( g );
100 body.paintIcon( this, g, 100, 60 );
101 ra.paintIcon( this, g, this.rax, this.ray );
102 la.paintIcon( this, g, this.lax, this.lay );
103 rl.paintIcon( this, g, this.rlx, this.rly );
104 ll.paintIcon( this, g, this.llx, this.lly );
105 }
106 public void actionPerformed( ActionEvent e ) {
107 esegui( e );
108 }
109 public void esegui( ActionEvent e ) {
110 if ( e.getSource() == raonMenuItem )
111 main.list.getRobot( this.getTitle() ).rightArm = true;
112 else if ( e.getSource() == raoffMenuItem )
113 main.list.getRobot( this.getTitle() ).rightArm = false;
114 else if ( e.getSource() == rachangeMenuItem )
115 main.list.getRobot( this.getTitle() ).rightArm = !main.list.getRobot( this.getTitle() ).rightArm;
116 else if ( e.getSource() == laonMenuItem )
117 main.list.getRobot( this.getTitle() ).leftArm = true;
118 else if ( e.getSource() == laoffMenuItem )
119 main.list.getRobot( this.getTitle() ).leftArm = false;
120 else if ( e.getSource() == lachangeMenuItem )
121 main.list.getRobot( this.getTitle() ).leftArm = !main.list.getRobot( this.getTitle() ).leftArm;
122 if ( e.getSource() == rlonMenuItem )
123 main.list.getRobot( this.getTitle() ).rightLeg = true;
124 else if ( e.getSource() == rloffMenuItem )
125 main.list.getRobot( this.getTitle() ).rightLeg = false;
126 else if ( e.getSource() == rlchangeMenuItem )
127 main.list.getRobot( this.getTitle() ).rightLeg = !main.list.getRobot( this.getTitle() ).rightLeg;
128 else if ( e.getSource() == llonMenuItem )
129 main.list.getRobot( this.getTitle() ).leftLeg = true;
130 else if ( e.getSource() == lloffMenuItem )
131 main.list.getRobot( this.getTitle() ).leftLeg = false;
132 else if ( e.getSource() == llchangeMenuItem )
133 main.list.getRobot( this.getTitle() ).leftLeg = !main.list.getRobot( this.getTitle() ).leftLeg;
134 setImages();
135 repaint();
136 }
137 public void setImages() {
138 if ( main.list.getRobot( this.getTitle() ).rightArm ) {
139 this.ra = new ImageIcon( ClassLoader.getSystemResource( "img/raon.gif" ) );
140 this.rax = 68;
141 this.ray = 128;
142 }
143 else {
144 this.ra = new ImageIcon( ClassLoader.getSystemResource( "img/raoff.gif" ) );
145 this.rax = 66;
146 this.ray = 248;
147 }
148 if ( main.list.getRobot( this.getTitle() ).leftArm ) {
149 this.la = new ImageIcon( ClassLoader.getSystemResource( "img/laon.gif" ) );
150 this.lax = 224;
151 this.lay = 118;
152 }
153 else {
154 this.la = new ImageIcon( ClassLoader.getSystemResource( "img/laoff.gif" ) );
155 this.lax = 225;
156 this.lay = 242;
157 }
158 if ( main.list.getRobot( this.getTitle() ).rightLeg ) {
159 this.rl = new ImageIcon( ClassLoader.getSystemResource( "img/rlon.gif" ) );
160 this.rlx = 84;
161 this.rly = 356;
162 }
163 else {
164 this.rl = new ImageIcon( ClassLoader.getSystemResource( "img/rloff.gif" ) );
165 this.rlx = 84;
166 this.rly = 367;
167 }
168 if ( main.list.getRobot( this.getTitle() ).leftLeg ) {
169 this.ll = new ImageIcon( ClassLoader.getSystemResource( "img/llon.gif" ) );
170 this.llx = 140;
171 this.lly = 363;
172 }
173 else {
174 this.ll = new ImageIcon( ClassLoader.getSystemResource( "img/lloff.gif" ) );
175 this.llx = 148;
176 this.lly = 367;
177 }
178 }
179} \ No newline at end of file
diff --git a/robottino/all_versions/v4.0/src/img/laoff.gif b/robottino/all_versions/v4.0/src/img/laoff.gif
new file mode 100755
index 0000000..49d9db0
--- /dev/null
+++ b/robottino/all_versions/v4.0/src/img/laoff.gif
Binary files differ
diff --git a/robottino/all_versions/v4.0/src/img/laon.gif b/robottino/all_versions/v4.0/src/img/laon.gif
new file mode 100755
index 0000000..1880677
--- /dev/null
+++ b/robottino/all_versions/v4.0/src/img/laon.gif
Binary files differ
diff --git a/robottino/all_versions/v4.0/src/img/lloff.gif b/robottino/all_versions/v4.0/src/img/lloff.gif
new file mode 100755
index 0000000..3db1ceb
--- /dev/null
+++ b/robottino/all_versions/v4.0/src/img/lloff.gif
Binary files differ
diff --git a/robottino/all_versions/v4.0/src/img/llon.gif b/robottino/all_versions/v4.0/src/img/llon.gif
new file mode 100755
index 0000000..ab1ff75
--- /dev/null
+++ b/robottino/all_versions/v4.0/src/img/llon.gif
Binary files differ
diff --git a/robottino/all_versions/v4.0/src/img/raoff.gif b/robottino/all_versions/v4.0/src/img/raoff.gif
new file mode 100755
index 0000000..88aabc4
--- /dev/null
+++ b/robottino/all_versions/v4.0/src/img/raoff.gif
Binary files differ
diff --git a/robottino/all_versions/v4.0/src/img/raon.gif b/robottino/all_versions/v4.0/src/img/raon.gif
new file mode 100755
index 0000000..46190a8
--- /dev/null
+++ b/robottino/all_versions/v4.0/src/img/raon.gif
Binary files differ
diff --git a/robottino/all_versions/v4.0/src/img/rloff.gif b/robottino/all_versions/v4.0/src/img/rloff.gif
new file mode 100755
index 0000000..04bda22
--- /dev/null
+++ b/robottino/all_versions/v4.0/src/img/rloff.gif
Binary files differ
diff --git a/robottino/all_versions/v4.0/src/img/rlon.gif b/robottino/all_versions/v4.0/src/img/rlon.gif
new file mode 100755
index 0000000..447464b
--- /dev/null
+++ b/robottino/all_versions/v4.0/src/img/rlon.gif
Binary files differ
diff --git a/robottino/all_versions/v4.0/src/img/robot.gif b/robottino/all_versions/v4.0/src/img/robot.gif
new file mode 100755
index 0000000..db87686
--- /dev/null
+++ b/robottino/all_versions/v4.0/src/img/robot.gif
Binary files differ

Generated with cgit - Back to sebastiano.tronto.net