{"id":252420,"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 # p1 車速\np1_round = 0 # p1 完成半圈數\np1_timer = 0 # p1 花費時間\n\np2 = game.create_sprite('car_orange.png') #p2橘色賽車\np2.x = 500\np2.y = 150\np2_speed = 0 # p2 車速\np2_round = 0 # p2 完成半圈數\np2_timer = 0 # p2 花費時間\n\np3 = game.create_sprite('car_white.png') #p3白色賽車\np3.x = 500\np3.y = 170\np3_speed = 0 # p3 車速\np3_round = 0 # p3 完成半圈數\np3_timer = 0 # p3 花費時間\n\nstart_time = time.time()\n\ngame.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\ngame.forever(p1_loop)\ngame.forever(p2_loop)\ngame.forever(p3_loop)\n","created_at":"2021-05-13T00:40:44.099+08:00","updated_at":"2021-05-13T14:32:57.432+08:00","name":"迷你賽車_延伸挑戰練習","language":"python","screenshot":{"url":"https://cdn1.koding.school/uploads/project/screenshot/252420/d1df25b2738683732bd80fb77933492e.jpg"},"parent_id":202897,"plugin":"","description":null,"note":null,"status":"public","like_student_ids":[],"is_featured":false,"views":178,"hashid":"jzmse6rwy","is_content_changed":false,"review_status":"unsubmitted","submitted_at":null,"reviewed_at":null,"advise":null,"is_deleted":false}
[{"id":4775602,"file_name":"cover.png","project_id":252420,"asset_id":289579,"created_at":"2021-05-13T00:40:44.106+08:00","updated_at":"2021-05-13T00:40:44.106+08:00"},{"id":4775603,"file_name":"end.png","project_id":252420,"asset_id":289580,"created_at":"2021-05-13T00:40:44.107+08:00","updated_at":"2021-05-13T00:40:44.107+08:00"},{"id":4775604,"file_name":"car_red.png","project_id":252420,"asset_id":289589,"created_at":"2021-05-13T00:40:44.108+08:00","updated_at":"2021-05-13T00:40:44.108+08:00"},{"id":4775605,"file_name":"car_white.png","project_id":252420,"asset_id":289590,"created_at":"2021-05-13T00:40:44.108+08:00","updated_at":"2021-05-13T00:40:44.108+08:00"},{"id":4775606,"file_name":"car_green.png","project_id":252420,"asset_id":289587,"created_at":"2021-05-13T00:40:44.109+08:00","updated_at":"2021-05-13T00:40:44.109+08:00"},{"id":4775607,"file_name":"car_orange.png","project_id":252420,"asset_id":289588,"created_at":"2021-05-13T00:40:44.110+08:00","updated_at":"2021-05-13T00:40:44.110+08:00"},{"id":4775608,"file_name":"ground_1.png","project_id":252420,"asset_id":291500,"created_at":"2021-05-13T00:40:44.111+08:00","updated_at":"2021-05-13T00:40:44.111+08:00"},{"id":4775609,"file_name":"ground_2.png","project_id":252420,"asset_id":291501,"created_at":"2021-05-13T00:40:44.112+08:00","updated_at":"2021-05-13T00:40:44.112+08:00"},{"id":4775610,"file_name":"ground_3.png","project_id":252420,"asset_id":291502,"created_at":"2021-05-13T00:40:44.113+08:00","updated_at":"2021-05-13T00:40:44.113+08:00"},{"id":4775611,"file_name":"road_1.png","project_id":252420,"asset_id":291503,"created_at":"2021-05-13T00:40:44.114+08:00","updated_at":"2021-05-13T00:40:44.114+08:00"},{"id":4775612,"file_name":"road_2.png","project_id":252420,"asset_id":291504,"created_at":"2021-05-13T00:40:44.115+08:00","updated_at":"2021-05-13T00:40:44.115+08:00"},{"id":4775613,"file_name":"road_3.png","project_id":252420,"asset_id":291505,"created_at":"2021-05-13T00:40:44.116+08:00","updated_at":"2021-05-13T00:40:44.116+08:00"},{"id":4775614,"file_name":"bgm.mp3","project_id":252420,"asset_id":293311,"created_at":"2021-05-13T00:40:44.117+08:00","updated_at":"2021-05-13T00:40:44.117+08:00"}]
橘蘋學習平台
橘蘋學習平台
我的作品
檢視專案頁
匯出
複製
匯入
刪除
截圖
幫助
用手機掃描下方 QRCode 進行安裝
或您也可以
下載 APK
到這台電腦