stage.set_background("city")
sprite = codesters.Sprite("bike")
sprite.set_size(0.5)
sprite.go_to(-200, 0)
stage.set_gravity(10)
stage.disable_all_walls()
def space_bar():
sprite.jump(5)
# add other actions...
stage.event_key("space", space_bar)
def interval():
# add any other actions...
top_height = random.randint(50, 300)
# sprite = codesters.Rectangle(x, y, width, height, "color")
top_block = codesters.Rectangle(300, 0, 100, top_height, "blue")
top_block.set_gravity_off()
top_block.set_top(250)
bot_height = 350 - top_height
# sprite = codesters.Rectangle(x, y, width, height, "color")
bot_block = codesters.Rectangle(300, 0, 100, bot_height, "blue")
bot_block.set_gravity_off()
bot_block.set_bottom(-250)
top_block.set_x_speed(-2)
bot_block.set_x_speed(-2)
stage.event_interval(interval, 5)
t = codesters.Teacher()
try:
tval1 = t.find_block('def')[2][1]
tval1a = t.find_block('def')[2][0]
tval1a = t.get_indent_at_line(tval1a)
except:
tval1 = "DNE"
tval1a = "DNE"
try:
params = t.get_parameters_for_function('Text')
ln_params = t.find_text("codesters.Text")
tval3 = t.get_indent_at_line(ln_params[0][0])
tval2 = params[0][0].lower()
tval2a = ln_params[0][1]
except:
params = "DNE"
tval2a = "DNE"
tval3 = "DNE"
tval2 = "DNE"
t1 = TestObjective()
t1.add_success('collision' in tval1 and tval1a == 0, "Great job!")
t1.add_failure('collision' not in tval1, "Did you add a Collision event?")
t1.add_failure(tval1 == "DNE", "Did you add a Collision event?")
t1.add_failure(tval1a > 0, "Oops! Did you indent your Collision Event? Make sure it's outside your Interval Event and not indented.")
t2 = TestObjective()
t2.add_success('game over' in tval2 and 'result' in tval2a and tval3 == 4, "Great job!")
t2.add_failure(tval2 == "DNE", "Did you create a text box?")
t2.add_failure('result' not in tval2a, "Did you rename the text box result?")
t2.add_failure('hello' in tval2, "Did you change the message in the text box?")
t2.add_failure(tval3 != 4, "Did you indent the text box inside the collision event?")
tester = TestManager()
tester.add_test_list([t1, t2])
tester.run_tests()
tester.display_first_feedback()
-
Run Code
-
Activity Submitted!
Enviar Trabajo
-
Actividad Siguiente
-
Stop Running Code
-
Show Chart
-
Show Console
-
Reset Code Editor
-
Codesters How To (opens in a new tab)