{"id":455044,"student_id":10,"content":"import game #載入遊戲套件\nimport time #載入時間套件\n\nroad = game.create_sprite('road_1.png') #賽道\ncheck1 = game.create_sprite('end.png') #檢查點1\ncheck2 = game.create_sprite('end.png') #檢查點1\nground = game.create_sprite('ground_1.png') #背景柏油路圖\ncover = game.create_sprite('cover.png') #背景柏油路圖\n\ncheck1.y = 150\ncheck2.y = 750\n\np1 = game.create_sprite('car_red.png') #p1紅色賽車\np1.x = 500\np1.y = 130\np1_speed = 0\np1_round = 0\np1_timer = 0\n\np2 = game.create_sprite('car_orange.png') #p2橘色賽車\np2.x = 500\np2.y = 150\np2_speed = 0\np2_round = 0\np2_timer = 0\n\np3 = game.create_sprite('car_white.png') #p3白色賽車\np3.x = 500\np3.y = 170\np3_speed = 0\np3_round = 0\np3_timer = 0\n\nstart_time = time.time()\n\n# game.create_sound('bgm.mp3')\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)\n","created_at":"2022-11-02T15:40:59.794+08:00","updated_at":"2022-11-02T15:42:42.599+08:00","name":"迷你賽車_除錯範例 副本","language":"python","screenshot":{"url":"https://cdn0.koding.school/uploads/project/screenshot/455044/9deb3fd8f20a91703e3a103a50c067a7.jpg"},"parent_id":252335,"plugin":"","description":null,"note":null,"status":"public","like_student_ids":[],"is_featured":false,"views":136,"hashid":"vngs5p5z2","is_content_changed":false,"review_status":"unsubmitted","submitted_at":null,"reviewed_at":null,"advise":null,"is_deleted":false}
[{"id":10313456,"file_name":"cover.png","project_id":455044,"asset_id":289579,"created_at":"2022-11-02T15:40:59.801+08:00","updated_at":"2022-11-02T15:40:59.801+08:00"},{"id":10313457,"file_name":"end.png","project_id":455044,"asset_id":289580,"created_at":"2022-11-02T15:40:59.804+08:00","updated_at":"2022-11-02T15:40:59.804+08:00"},{"id":10313458,"file_name":"car_red.png","project_id":455044,"asset_id":289589,"created_at":"2022-11-02T15:40:59.806+08:00","updated_at":"2022-11-02T15:40:59.806+08:00"},{"id":10313459,"file_name":"car_white.png","project_id":455044,"asset_id":289590,"created_at":"2022-11-02T15:40:59.807+08:00","updated_at":"2022-11-02T15:40:59.807+08:00"},{"id":10313460,"file_name":"car_green.png","project_id":455044,"asset_id":289587,"created_at":"2022-11-02T15:40:59.808+08:00","updated_at":"2022-11-02T15:40:59.808+08:00"},{"id":10313461,"file_name":"car_orange.png","project_id":455044,"asset_id":289588,"created_at":"2022-11-02T15:40:59.809+08:00","updated_at":"2022-11-02T15:40:59.809+08:00"},{"id":10313462,"file_name":"ground_1.png","project_id":455044,"asset_id":291500,"created_at":"2022-11-02T15:40:59.810+08:00","updated_at":"2022-11-02T15:40:59.810+08:00"},{"id":10313463,"file_name":"ground_2.png","project_id":455044,"asset_id":291501,"created_at":"2022-11-02T15:40:59.812+08:00","updated_at":"2022-11-02T15:40:59.812+08:00"},{"id":10313464,"file_name":"ground_3.png","project_id":455044,"asset_id":291502,"created_at":"2022-11-02T15:40:59.814+08:00","updated_at":"2022-11-02T15:40:59.814+08:00"},{"id":10313465,"file_name":"road_1.png","project_id":455044,"asset_id":291503,"created_at":"2022-11-02T15:40:59.815+08:00","updated_at":"2022-11-02T15:40:59.815+08:00"},{"id":10313466,"file_name":"road_2.png","project_id":455044,"asset_id":291504,"created_at":"2022-11-02T15:40:59.816+08:00","updated_at":"2022-11-02T15:40:59.816+08:00"},{"id":10313467,"file_name":"road_3.png","project_id":455044,"asset_id":291505,"created_at":"2022-11-02T15:40:59.817+08:00","updated_at":"2022-11-02T15:40:59.817+08:00"},{"id":10313468,"file_name":"bgm.mp3","project_id":455044,"asset_id":293311,"created_at":"2022-11-02T15:40:59.818+08:00","updated_at":"2022-11-02T15:40:59.818+08:00"}]
橘蘋學習平台
橘蘋學習平台
我的作品
檢視專案頁
匯出
複製
匯入
刪除
截圖
幫助
用手機掃描下方 QRCode 進行安裝
或您也可以
下載 APK
到這台電腦