{"id":366851,"student_id":2589,"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')\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\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 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-04-15T13:23:34.623+08:00","updated_at":"2022-04-15T13:23:46.075+08:00","name":"迷你賽車(完整版)","language":"python","screenshot":{"url":null},"parent_id":4,"plugin":"","description":null,"note":null,"status":"public","like_student_ids":[],"is_featured":false,"views":74,"hashid":"meyswded6","is_content_changed":false,"review_status":"unsubmitted","submitted_at":null,"reviewed_at":null,"advise":null,"is_deleted":false}
[{"id":8095579,"file_name":"cover.png","project_id":366851,"asset_id":494648,"created_at":"2022-04-15T13:23:45.960+08:00","updated_at":"2022-04-15T13:23:45.960+08:00"},{"id":8095580,"file_name":"end.png","project_id":366851,"asset_id":494649,"created_at":"2022-04-15T13:23:45.967+08:00","updated_at":"2022-04-15T13:23:45.967+08:00"},{"id":8095581,"file_name":"car_red.png","project_id":366851,"asset_id":494650,"created_at":"2022-04-15T13:23:45.972+08:00","updated_at":"2022-04-15T13:23:45.972+08:00"},{"id":8095582,"file_name":"car_white.png","project_id":366851,"asset_id":494651,"created_at":"2022-04-15T13:23:45.980+08:00","updated_at":"2022-04-15T13:23:45.980+08:00"},{"id":8095583,"file_name":"car_green.png","project_id":366851,"asset_id":494652,"created_at":"2022-04-15T13:23:45.986+08:00","updated_at":"2022-04-15T13:23:45.986+08:00"},{"id":8095584,"file_name":"car_orange.png","project_id":366851,"asset_id":494653,"created_at":"2022-04-15T13:23:45.991+08:00","updated_at":"2022-04-15T13:23:45.991+08:00"},{"id":8095585,"file_name":"ground_1.png","project_id":366851,"asset_id":494654,"created_at":"2022-04-15T13:23:45.998+08:00","updated_at":"2022-04-15T13:23:45.998+08:00"},{"id":8095586,"file_name":"ground_2.png","project_id":366851,"asset_id":494655,"created_at":"2022-04-15T13:23:46.004+08:00","updated_at":"2022-04-15T13:23:46.004+08:00"},{"id":8095587,"file_name":"ground_3.png","project_id":366851,"asset_id":494656,"created_at":"2022-04-15T13:23:46.013+08:00","updated_at":"2022-04-15T13:23:46.013+08:00"},{"id":8095588,"file_name":"road_1.png","project_id":366851,"asset_id":494657,"created_at":"2022-04-15T13:23:46.020+08:00","updated_at":"2022-04-15T13:23:46.020+08:00"},{"id":8095589,"file_name":"road_2.png","project_id":366851,"asset_id":494658,"created_at":"2022-04-15T13:23:46.030+08:00","updated_at":"2022-04-15T13:23:46.030+08:00"},{"id":8095590,"file_name":"road_3.png","project_id":366851,"asset_id":494659,"created_at":"2022-04-15T13:23:46.040+08:00","updated_at":"2022-04-15T13:23:46.040+08:00"},{"id":8095591,"file_name":"bgm.mp3","project_id":366851,"asset_id":494660,"created_at":"2022-04-15T13:23:46.073+08:00","updated_at":"2022-04-15T13:23:46.073+08:00"}]
橘蘋學習平台
橘蘋學習平台
我的作品
檢視專案頁
匯出
複製
匯入
刪除
截圖
幫助
用手機掃描下方 QRCode 進行安裝
或您也可以
下載 APK
到這台電腦