summaryrefslogtreecommitdiff
path: root/robot/problems/introduction/gyro90/common.py~
diff options
context:
space:
mode:
Diffstat (limited to 'robot/problems/introduction/gyro90/common.py~')
-rw-r--r--robot/problems/introduction/gyro90/common.py~80
1 files changed, 0 insertions, 80 deletions
diff --git a/robot/problems/introduction/gyro90/common.py~ b/robot/problems/introduction/gyro90/common.py~
deleted file mode 100644
index c02a2c4..0000000
--- a/robot/problems/introduction/gyro90/common.py~
+++ /dev/null
@@ -1,80 +0,0 @@
-# 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 = 209
-group = 'introduction'
-number = 7
-visible = True
-
-solution = '''\
-from ev3dev import *
-from mindstorms_widgets import mindstorms_widgets
-
-robot = mindstorms_widgets()
-robot.connect_motor( 'left' )
-robot.connect_motor( 'right' )
-robot.connect_sensor( 'gyro' )
-
-robot.gyro_set_mode( 'angle' )
-robot.reset_gyro()
-
-power = 15
-robot.move_tank( 'on', lr_power=[power,-power] )
-while robot.gyro_sensor_measure() < 90:
- pass
-robot.move_tank( 'off' )
-'''
-
-hint_type = {
- 'mW_init': Hint('mW_init'),
- 'connectMotorLeft': Hint('connectMotorLeft'),
- 'connectMotorRight': Hint('connectMotorRight'),
- 'connectGyro': Hint('connectGyro'),
- 'resetGyro': Hint('resetGyro'),
- 'setGyroMode': Hint('setGyroMode'),
- 'gyroMeasure': Hint('gyroMeasure'),
- 'moveTank': Hint('moveTank'),
- 'lrPower': Hint('lrPower'),
- 'while': Hint('while')
-}
-
-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, ['connect_gyro','(', 'gyro', ')']):
- return [{'id': 'connectGyro'}]
-
- if not has_token_sequence(tokens, ['reset_gyro()']):
- return [{'id': 'resetGyro'}]
-
- if not has_token_sequence(tokens, ['gyro_set_mode']):
- return [{'id': 'setGyroMode'}]
-
- if not has_token_sequence(tokens, ['gyro_sensor_measure()']):
- return [{'id': 'gyroMeasure'}]
-
- if not has_token_sequence(tokens, ['move_tank']):
- return [{'id': 'moveTank'}]
-
- if not has_token_sequence(tokens, ['lr_power']):
- return [{'id': 'lrPower'}]
-
- if not has_token_sequence(tokens, ['while']):
- return [{'id': 'while'}]
-
- return None