{"id":226846,"student_id":2589,"content":"import game #載入遊戲套件\nimport time #載入時間套件\n\nroad = game.create_sprite('road_3.png') #賽道\ncheck1 = game.create_sprite('end.png') #檢查點1\ncheck2 = game.create_sprite('end.png') #檢查點1\nground = game.create_sprite('ground_3.png') #背景柏油路圖\ncover = game.create_sprite('cover.png') #背景柏油路圖\n\ncheck1.y = 150\ncheck2.y = 400\n\np1 = game.create_sprite('car_red.png')\np1.x = 500\np1.y = 130\np1_speed = 0\np1_round = 0\np1_timer = 0\n\np2 = game.create_sprite('car_orange.png')\np2.x = 500\np2.y = 150\np2_speed = 0\np2_round = 0\np2_timer = 0\n\np3 = game.create_sprite('car_white.png')\np3.x = 500\np3.y = 170\np3_speed = 0\np3_round = 0\np3_timer = 0\n\nstart_time = time.time()\n\n\ndef p1_loop():\n global p1_speed, p1_round, p1_timer\n \n p1.step_forward(p1_speed)\n \n if game.key.right:\n p1.direction += 2\n p1_speed -= 0.03\n \n if game.key.left:\n p1.direction -= 2\n p1_speed -= 0.03\n \n if game.key.up and p1_round \u003c 4:\n p1_speed += 0.1\n \n if p1_speed \u003e 0:\n p1_speed -= 0.01\n \n if p1.touched(ground):\n p1_speed = 0.3\n \n if p1.touched(check2) and p1_round % 2 == 0:\n p1_round += 1\n \n if p1.touched(check1) and p1_round % 2 == 1:\n p1_round += 1\n \n if p1_round \u003c 4:\n p1_timer = int(time.time() - start_time)\n \n game.draw_text(p1_round, 10, 10, 'black', 30)\n game.draw_text(p1_timer, 50, 10, 'black', 30)\n\n\ndef p2_loop():\n global p2_speed, p2_round, p2_timer\n \n p2.step_forward(p2_speed)\n \n if game.key.d:\n p2.direction += 2\n p2_speed -= 0.03\n \n if game.key.a:\n p2.direction -= 2\n p2_speed -= 0.03\n \n if game.key.w and p2_round \u003c 4:\n p2_speed += 0.1\n \n if p2_speed \u003e 0:\n p2_speed -= 0.01\n \n if p2.touched(ground):\n p2_speed = 0.3\n \n if p2.touched(check2) and p2_round % 2 == 0:\n p2_round += 1\n \n if p2.touched(check1) and p2_round % 2 == 1:\n p2_round += 1\n \n if p2_round \u003c 4:\n p2_timer = int(time.time() - start_time)\n \n game.draw_text(p2_round, 10, 40, 'black', 30)\n game.draw_text(p2_timer, 50, 40, 'black', 30)\n\n\ndef p3_loop():\n global p3_speed, p3_round, p3_timer\n \n p3.step_forward(p3_speed)\n \n if game.key.k:\n p3.direction += 2\n p3_speed -= 0.03\n \n if game.key.h:\n p3.direction -= 2\n p3_speed -= 0.03\n \n if game.key.u and p3_round \u003c 4:\n p3_speed += 0.1\n \n if p3_speed \u003e 0:\n p3_speed -= 0.01\n \n if p3.touched(ground):\n p3_speed = 0.3\n \n if p3.touched(check2) and p3_round % 2 == 0:\n p2_round += 1\n \n if p3.touched(check1) and p3_round % 2 == 1:\n p2_round += 1\n \n if p3_round \u003c 4:\n p3_timer = int(time.time() - start_time)\n \n game.draw_text(p3_round, 10, 70, 'black', 30)\n game.draw_text(p3_timer, 50, 70, 'black', 30)\n\n\ngame.forever(p1_loop)\ngame.forever(p2_loop)\ngame.forever(p3_loop)","created_at":"2021-02-04T19:05:51.227+08:00","updated_at":"2021-02-04T19:06:16.268+08:00","name":"迷你賽車(預設版) 副本","language":"python","screenshot":{"url":null},"parent_id":210496,"plugin":"","description":null,"note":null,"status":"public","like_student_ids":[],"is_featured":false,"views":68,"hashid":"jzmse94wz","is_content_changed":false,"review_status":"unsubmitted","submitted_at":null,"reviewed_at":null,"advise":null,"is_deleted":false}
[{"id":4039900,"file_name":"bgm.mp3","project_id":226846,"asset_id":291507,"created_at":"2021-02-04T19:05:51.233+08:00","updated_at":"2021-02-04T19:05:51.233+08:00"},{"id":4039901,"file_name":"road_3.png","project_id":226846,"asset_id":291508,"created_at":"2021-02-04T19:05:51.235+08:00","updated_at":"2021-02-04T19:05:51.235+08:00"},{"id":4039902,"file_name":"road_2.png","project_id":226846,"asset_id":291509,"created_at":"2021-02-04T19:05:51.236+08:00","updated_at":"2021-02-04T19:05:51.236+08:00"},{"id":4039903,"file_name":"road_1.png","project_id":226846,"asset_id":291510,"created_at":"2021-02-04T19:05:51.237+08:00","updated_at":"2021-02-04T19:05:51.237+08:00"},{"id":4039904,"file_name":"ground_3.png","project_id":226846,"asset_id":291511,"created_at":"2021-02-04T19:05:51.238+08:00","updated_at":"2021-02-04T19:05:51.238+08:00"},{"id":4039905,"file_name":"ground_2.png","project_id":226846,"asset_id":291512,"created_at":"2021-02-04T19:05:51.239+08:00","updated_at":"2021-02-04T19:05:51.239+08:00"},{"id":4039906,"file_name":"ground_1.png","project_id":226846,"asset_id":291513,"created_at":"2021-02-04T19:05:51.239+08:00","updated_at":"2021-02-04T19:05:51.239+08:00"},{"id":4039907,"file_name":"car_white.png","project_id":226846,"asset_id":291514,"created_at":"2021-02-04T19:05:51.241+08:00","updated_at":"2021-02-04T19:05:51.241+08:00"},{"id":4039908,"file_name":"car_red.png","project_id":226846,"asset_id":291515,"created_at":"2021-02-04T19:05:51.242+08:00","updated_at":"2021-02-04T19:05:51.242+08:00"},{"id":4039909,"file_name":"car_orange.png","project_id":226846,"asset_id":291516,"created_at":"2021-02-04T19:05:51.243+08:00","updated_at":"2021-02-04T19:05:51.243+08:00"},{"id":4039910,"file_name":"car_green.png","project_id":226846,"asset_id":291517,"created_at":"2021-02-04T19:05:51.244+08:00","updated_at":"2021-02-04T19:05:51.244+08:00"},{"id":4039911,"file_name":"end.png","project_id":226846,"asset_id":291518,"created_at":"2021-02-04T19:05:51.245+08:00","updated_at":"2021-02-04T19:05:51.245+08:00"},{"id":4039912,"file_name":"cover.png","project_id":226846,"asset_id":291519,"created_at":"2021-02-04T19:05:51.246+08:00","updated_at":"2021-02-04T19:05:51.246+08:00"}]
橘蘋學習平台
橘蘋學習平台
我的作品
檢視專案頁
匯出
複製
匯入
刪除
截圖
幫助
用手機掃描下方 QRCode 進行安裝
或您也可以
下載 APK
到這台電腦