summaryrefslogtreecommitdiff
path: root/robot/problems/introduction/circle20
diff options
context:
space:
mode:
Diffstat (limited to 'robot/problems/introduction/circle20')
-rw-r--r--robot/problems/introduction/circle20/common.py62
-rw-r--r--robot/problems/introduction/circle20/common.py~63
-rw-r--r--robot/problems/introduction/circle20/en.py14
-rw-r--r--robot/problems/introduction/circle20/naloga05_circle20.py13
-rw-r--r--robot/problems/introduction/circle20/sl.py26
-rw-r--r--robot/problems/introduction/circle20/sl.py~24
6 files changed, 202 insertions, 0 deletions
diff --git a/robot/problems/introduction/circle20/common.py b/robot/problems/introduction/circle20/common.py
new file mode 100644
index 0000000..661d43a
--- /dev/null
+++ b/robot/problems/introduction/circle20/common.py
@@ -0,0 +1,62 @@
+# coding=utf-8
+
+from python.util import has_token_sequence, string_almost_equal, \
+ string_contains_number, get_tokens, get_numbers, get_exception_desc
+from server.hints import Hint, HintSequence
+
+id = 205
+group = 'introduction'
+number = 5
+visible = True
+
+solution = '''\
+from ev3dev import *
+from mindstorms_widgets import mindstorms_widgets
+
+robot = mindstorms_widgets()
+robot.connect_motor( 'left' )
+robot.connect_motor( 'right' )
+
+fct = 9 # full circle time
+rad = 20 # Direction to make a good radius for the circle
+robot.move_steering( 'on_for_seconds', direction=rad, power=40, seconds=fct )
+'''
+
+hint_type = {
+ 'mW_init': Hint('mW_init'),
+ 'connectMotorLeft': Hint('connectMotorLeft'),
+ 'connectMotorRight': Hint('connectMotorRight'),
+ 'moveSteering': Hint('moveSteering'),
+ 'onForSeconds': Hint('onForSeconds'),
+ 'direction': Hint('direction'),
+ 'seconds': Hint('seconds'),
+}
+
+def hint( code):
+ tokens = get_tokens(code)
+
+ # if code does not include mindstorms_widgets(), a student gets a hint that the robot should be somehow represented in the program
+ if not has_token_sequence(tokens, ['mindstorms_widgets', '(',')']):
+ return [{'id': 'mW_init'}]
+
+ # if code does not include connect_motor statement, a student needs to learn about how to connect the motors
+ if not has_token_sequence(tokens, ['connect_motor']) and not has_token_sequence(tokens, ['left']):
+ return [{'id': 'connectMotorLeft'}]
+
+ # if code does not include connect_motor statement, a student needs to learn about how to connect the motors
+ if not has_token_sequence(tokens, ['connect_motor']) and not has_token_sequence(tokens, ['right']):
+ return [{'id': 'connectMotorRight'}]
+
+ if not has_token_sequence(tokens, ['move_steering']):
+ return [{'id': 'moveSteering'}]
+
+ if not 'on_for_seconds' in code:
+ return [{'id': 'onForSeconds'}]
+
+ if not 'direction' in code:
+ return [{'id': 'direction'}]
+
+ if not 'seconds' in code:
+ return [{'id': 'seconds'}]
+
+ return None
diff --git a/robot/problems/introduction/circle20/common.py~ b/robot/problems/introduction/circle20/common.py~
new file mode 100644
index 0000000..eb171ae
--- /dev/null
+++ b/robot/problems/introduction/circle20/common.py~
@@ -0,0 +1,63 @@
+# coding=utf-8
+
+from python.util import has_token_sequence, string_almost_equal, \
+ string_contains_number, get_tokens, get_numbers, get_exception_desc
+from server.hints import Hint, HintSequence
+
+id = 205
+group = 'introduction'
+number = 5
+visible = True
+
+solution = '''\
+import time
+from ev3dev import *
+from mindstorms_widgets import mindstorms_widgets
+
+robot = mindstorms_widgets()
+robot.connect_motor( 'left' )
+robot.connect_motor( 'right' )
+
+fct = 9 # full circle time
+rad = 20 # Direction to make a good radius for the circle
+robot.move_steering( 'on_for_seconds', direction=rad, power=40, seconds=fct )
+'''
+
+hint_type = {
+ 'mW_init': Hint('mW_init'),
+ 'connectMotorLeft': Hint('connectMotorLeft'),
+ 'connectMotorRight': Hint('connectMotorRight'),
+ 'moveSteering': Hint('moveSteering'),
+ 'onForSeconds': Hint('onForSeconds'),
+ 'direction': Hint('direction'),
+ 'seconds': Hint('seconds'),
+}
+
+def hint( code):
+ tokens = get_tokens(code)
+
+ # if code does not include mindstorms_widgets(), a student gets a hint that the robot should be somehow represented in the program
+ if not has_token_sequence(tokens, ['mindstorms_widgets', '(',')']):
+ return [{'id': 'mW_init'}]
+
+ # if code does not include connect_motor statement, a student needs to learn about how to connect the motors
+ if not has_token_sequence(tokens, ['connect_motor']) and not has_token_sequence(tokens, ['left']):
+ return [{'id': 'connectMotorLeft'}]
+
+ # if code does not include connect_motor statement, a student needs to learn about how to connect the motors
+ if not has_token_sequence(tokens, ['connect_motor']) and not has_token_sequence(tokens, ['right']):
+ return [{'id': 'connectMotorRight'}]
+
+ if not has_token_sequence(tokens, ['move_steering']):
+ return [{'id': 'moveSteering'}]
+
+ if not has_token_sequence(tokens, ['on_for_seconds']):
+ return [{'id': 'onForSeconds'}]
+
+ if not has_token_sequence(tokens, ['direction']):
+ return [{'id': 'direction'}]
+
+ if not has_token_sequence(tokens, ['seconds']):
+ return [{'id': 'seconds'}]
+
+ return None
diff --git a/robot/problems/introduction/circle20/en.py b/robot/problems/introduction/circle20/en.py
new file mode 100644
index 0000000..8210d71
--- /dev/null
+++ b/robot/problems/introduction/circle20/en.py
@@ -0,0 +1,14 @@
+# coding=utf-8
+import server
+mod = server.problems.load_language('python', 'en')
+
+id = 205
+name = 'Circle 20 cm'
+slug = 'Circle 20 cm'
+
+description = '''\
+'''
+
+hint = {
+
+}
diff --git a/robot/problems/introduction/circle20/naloga05_circle20.py b/robot/problems/introduction/circle20/naloga05_circle20.py
new file mode 100644
index 0000000..e95d4f4
--- /dev/null
+++ b/robot/problems/introduction/circle20/naloga05_circle20.py
@@ -0,0 +1,13 @@
+#!/usr/bin/python
+
+import time
+from ev3dev import *
+from mindstorms_widgets import mindstorms_widgets
+
+robot = mindstorms_widgets()
+robot.connect_motor( 'left' )
+robot.connect_motor( 'right' )
+
+fct = 9 # full circle time
+rad = 20 # Direction to make a good radius for the circle
+robot.move_steering( 'on_for_seconds', direction=rad, power=40, seconds=fct ) \ No newline at end of file
diff --git a/robot/problems/introduction/circle20/sl.py b/robot/problems/introduction/circle20/sl.py
new file mode 100644
index 0000000..219f9c7
--- /dev/null
+++ b/robot/problems/introduction/circle20/sl.py
@@ -0,0 +1,26 @@
+# coding=utf-8
+
+id = 205
+name = 'Krog 20 cm'
+slug = 'Krog 20 cm'
+
+description = '''\
+<p>Napiši program, s katerim bo robot enkrat prevozil krog s polmerom 20 cm in se nato ustavil.</p>'''
+
+hint = {
+ 'mW_init':['''<p>Robota v programu predstavimo z mindstorms_widgets(): <code>robot = mindstorms_widgets()</code>.</p>'''],
+ 'connectMotorLeft':['''<p>Robotu priključi levi motor</p>''',
+ '''<p><code>robot.connect_motor( 'left' )</code>.</p>'''],
+ 'connectMotorRight':['''<p>Robotu priključi desni motor</p>''',
+ '''<p><code>robot.connect_motor( 'right' )</code>.</p>'''],
+ 'moveSteering':['''<p>Sinhroniziraj motorja in ju zaženi za 3 sekunde.</p>''',
+ '''<p>Za sinhronizirano vožnjo je najbolj primerna metoda <code>robot.move_steering( ... )</code>.</p>'''],
+ 'onForSeconds':['''<p>Prvi argument metode <code>robot.move_steering</code> naj pove, da bo delovanje motorjev časovno omejeno.</p>''',
+ '''<p><code>robot.move_steering('on_for_seconds', ... )</code>.</p>'''],
+ 'direction':['''<p>Navedi smer premikanja motorjev; pozitivne vrednosti pomenijo zavoj v desno.</p>''',
+ '''<p>Določi vrednost parametra direction tako, da bo robot krožil po krogu s polmerom 20cm. Vrednost je odvisna od konstrukcije robota in podlage.</p>''',
+ '''<p><code>robot.move_steering( 'on_for_seconds', direction=20, ... )</code>.</p>'''],
+ 'seconds':['''<p>Napiši časovno omejitev v sekundah.</p>''',
+ '''<p>Za dani polmer izmeri čas, ki ga robot potrebuje za en obhod.</p>''',
+ '''<p><code>robot.move_steering( 'on_for_seconds', direction=0, seconds=3 )</code>.</p>'''],
+}
diff --git a/robot/problems/introduction/circle20/sl.py~ b/robot/problems/introduction/circle20/sl.py~
new file mode 100644
index 0000000..656253d
--- /dev/null
+++ b/robot/problems/introduction/circle20/sl.py~
@@ -0,0 +1,24 @@
+# coding=utf-8
+
+id = 205
+name = 'Krog 20 cm'
+slug = 'Krog 20 cm'
+
+description = '''\
+<p>Napiši program, s katerim bo robot enkrat prevozil krog s polmerom 20 cm in se nato ustavil.</p>'''
+
+hint = {
+ 'mW_init':['''<p>Robota v programu predstavimo z mindstorms_widgets(): <code>robot = mindstorms_widgets()</code>.</p>'''],
+ 'connectMotorLeft':['''<p>Robotu moramo priključiti levi motor: <code>robot.connect_motor( 'left' )</code>.</p>'''],
+ 'connectMotorRight':['''<p>Robotu moramo priključiti desni motor: <code>robot.connect_motor( 'right' )</code>.</p>'''],
+ 'moveSteering':['''<p>Sinhroniziraj motorja in ju zaženi za 3 sekunde.</p>''',
+ '''<p>Za sinhronizirano vožnjo je najbolj primerna metoda <code>robot.move_steering( ... )</code>.</p>'''],
+ 'onForSeconds':['''<p>Prvi argument metode <code>robot.move_steering</code> naj pove, da bo delovanje motorjev časovno omejeno.</p>''',
+ '''<p><code>robot.move_steering('on_for_seconds', ... )</code>.</p>'''],
+ 'direction':['''<p>Navedi smer premikanja motorjev; pozitivne vrednosti pomenijo zavoj v desno.</p>''',
+ '''<p>Določi vrednost parametra direction tako, da bo robot krožil po krogu s polmerom 20cm. Vrednost je odvisna od konstrukcije robota in podlage.</p>''',
+ '''<p><code>robot.move_steering( 'on_for_seconds', direction=20, ... )</code>.</p>'''],
+ 'seconds':['''<p>Napiši časovno omejitev v sekundah.</p>''',
+ '''<p>Za dani polmer izmeri čas, ki ga robot potrebuje za en obhod.</p>''',
+ '''<p><code>robot.move_steering( 'on_for_seconds', direction=0, seconds=3 )</code>.</p>'''],
+}