{"id":847538,"student_id":3760,"content":"from game import *\nfrom random import *\n\nset_backdrop('bg.png')\nnumbers = ['n_' + str(i) + '.png' for i in range(10)]\np1 = create_sprite('p_0.png', 'p_1.png', 'p_2.png', 'p_9.png') #放底層麵包的叩叮\np2 = create_sprite('p_0.png', 'p_3.png', 'p_4.png', 'p_7.png', 'p_8.png', 'p_9.png') #放肉片的叩叮\np3 = create_sprite('p_0.png', 'p_5.png', 'p_6.png', 'p_10.png') #放上層麵包的叩叮\np4 = create_sprite('p_0.png', 'p_1.png', 'p_2.png', 'p_12.png') #負責檢查的叩叮\nh1 = create_sprite('h_0.png', 'h_1.png', 'h_2.png', 'h_3.png', 'h_4.png') #漢堡\nh2 = create_sprite('h_0.png', 'h_1.png', 'h_2.png', 'h_3.png', 'h_4.png') #漢堡\nh3 = create_sprite('h_0.png', 'h_1.png', 'h_2.png', 'h_3.png', 'h_4.png') #漢堡\nh4 = create_sprite('h_0.png', 'h_1.png', 'h_2.png', 'h_3.png', 'h_4.png') #漢堡\nstatus = create_sprite('s1.png', 's2.png', 's3.png', 's4.png', 's5.png') #狀態燈號\nn1 = create_sprite(numbers) #百位數分數\nn2 = create_sprite(numbers) #十位數分數\nn3 = create_sprite(numbers) #個位數分數\nunit = create_sprite('text.png') #出貨文字\nrules = create_sprite('rules.png') #遊戲規則說明\np1.move_to(150, 450)\np2.move_to(450, 450)\np3.move_to(750, 450)\np4.move_to(1050, 450)\nh1.move_to(150, 650)\nh2.move_to(450, 650)\nh3.move_to(750, 650)\nh4.move_to(1050, 650)\nn1.move_to(50, 75)\nn2.move_to(110, 75)\nn3.move_to(170, 75)\nunit.move_to(300, 75)\nstatus.move_to(1000, 50)\n\n# bgm = create_sound('bgm.ogg', True)\nh1.costume_id = 1\n\nclock = 0 #遊戲迴圈執行次數\nactive = False #是否按下方向鍵下\nscore = 0 #玩家分數\n\n# 遊戲迴圈\ndef loop():\n global clock, active, score\n clock += 1\n if rules.hidden and clock % (15 - score // 5) == 0:\n if status.costume_id == 0: move_right() #向右前進\n elif status.costume_id == 1: all_put() #放置食材\n elif status.costume_id == 2: move_left() #向左退回\n elif status.costume_id == 3: p2_put() #補放食材\n \n if key.enter: rules.hidden = True #按下 enter 就隱藏遊戲說明\n if key.left and status.costume_id == 0: status.costume_id = 2 #按下方向鍵左就退回\n if key.down and status.costume_id == 0: active = True #按方向鍵下就放食材\n if status.costume_id == 0 and h1.x == 150: active = False #切換回移動時,就清空 active 變數\n if status.costume_id == 1 and h4.costume_id != 3 and h4.costume_id != 0: gameover() #如果漢堡不是空的或完整遊戲就結束\n if status.costume_id == 3 and h2.costume_id != 1: gameover() #如果退回有肉的漢堡遊戲就結束\n update_score() #更新分數角色\n\n# 向右前進\ndef move_right():\n global score\n if h1.x \u003c 450: # 如果漢堡還沒移動到第二隻叩叮面前,就向前移動\n h1.x += 60\n h2.x += 60\n h3.x += 60\n h4.x += 60\n else: # 否則就後退重置並切換造型圖\n h1.x -= 300\n h2.x -= 300\n h3.x -= 300\n h4.x -= 300\n if h4.costume_id == 3: score += 1\n h4.costume_id = h3.costume_id\n h3.costume_id = h2.costume_id\n h2.costume_id = h1.costume_id\n h1.costume_id = 0\n status.costume_id = 1\n\n# 向左退回\ndef move_left():\n h1.x -= 60\n h2.x -= 60\n h3.x -= 60\n h4.x -= 60\n if h1.x \u003c= 150: #如果漢堡後退到叩叮面前,就將狀態切換成補放\n status.costume_id = 3\n\n# 放置食材\ndef all_put():\n p1_put()\n if h2.costume_id == 1: p2_put()\n if active: p3_put()\n create_sound('put.ogg')\n\n# 第一隻叩叮放食材\ndef p1_put():\n if p1.costume_id == 0:\n p1.costume_id = 1\n elif p1.costume_id == 1:\n p1.costume_id = 2\n else:\n h1.costume_id += 1\n p1.costume_id = 0\n\n# 第二隻叩叮放食材\ndef p2_put():\n if p2.costume_id == 0:\n if random() \u003c 0.2: p2.costume_id = 3\n else: p2.costume_id = 1\n elif p2.costume_id == 1:\n p2.costume_id = 2\n elif p2.costume_id == 3:\n p2.costume_id = 4\n else:\n if p2.costume_id == 2: h2.costume_id += 1\n p2.costume_id = 0\n status.costume_id = 0\n \n# 第三隻叩叮放食材 \ndef p3_put():\n global active\n if p3.costume_id == 0:\n p3.costume_id = 1\n elif p3.costume_id == 1:\n p3.costume_id = 2\n else:\n if h3.costume_id == 2: h3.costume_id = 3\n if h3.costume_id == 1: h3.costume_id = 4\n p3.costume_id = 0\n\n# 遊戲結束\ndef gameover():\n p1.costume_id = 3\n p2.costume_id = 5\n p3.costume_id = 3\n p4.costume_id = 3\n status.costume_id = 4\n # bgm.pause()\n\n# 更新分數角色 \ndef update_score():\n n1.costume_id = (score // 100) % 10\n n2.costume_id = (score // 10) % 10\n n3.costume_id = (score // 1) % 10\n if status.costume_id == 4 and clock % 30 == 0:\n n1.hidden = not n1.hidden\n n2.hidden = not n2.hidden\n n3.hidden = not n3.hidden\n unit.hidden = not unit.hidden\n \nforever(loop)\n ","created_at":"2024-09-25T14:41:38.570+08:00","updated_at":"2024-09-25T18:03:38.245+08:00","name":"漢堡工廠_完整版","language":"python","screenshot":{"url":"https://cdn3.koding.school/uploads/project/screenshot/847538/81e2e23e114d10aa778ca8e2a3bfb45b.jpg"},"parent_id":4,"plugin":"","description":null,"note":null,"status":"public","like_student_ids":[],"is_featured":false,"views":25,"hashid":"882sj53pz","is_content_changed":false,"review_status":"unsubmitted","submitted_at":null,"reviewed_at":null,"advise":null,"is_deleted":false}
[{"id":18604312,"file_name":"bg.png","project_id":847538,"asset_id":778375,"created_at":"2024-09-25T14:43:14.346+08:00","updated_at":"2024-09-25T14:43:14.346+08:00"},{"id":18604313,"file_name":"h_0.png","project_id":847538,"asset_id":778376,"created_at":"2024-09-25T14:43:14.354+08:00","updated_at":"2024-09-25T14:43:14.354+08:00"},{"id":18604314,"file_name":"p_0.png","project_id":847538,"asset_id":778377,"created_at":"2024-09-25T14:43:14.357+08:00","updated_at":"2024-09-25T14:43:14.357+08:00"},{"id":18604315,"file_name":"p_1.png","project_id":847538,"asset_id":778378,"created_at":"2024-09-25T14:43:14.361+08:00","updated_at":"2024-09-25T14:43:14.361+08:00"},{"id":18604316,"file_name":"p_8.png","project_id":847538,"asset_id":778379,"created_at":"2024-09-25T14:43:14.366+08:00","updated_at":"2024-09-25T14:43:14.366+08:00"},{"id":18604317,"file_name":"p_9.png","project_id":847538,"asset_id":778380,"created_at":"2024-09-25T14:43:14.370+08:00","updated_at":"2024-09-25T14:43:14.370+08:00"},{"id":18604318,"file_name":"bgm.ogg","project_id":847538,"asset_id":778381,"created_at":"2024-09-25T14:43:14.409+08:00","updated_at":"2024-09-25T14:43:14.409+08:00"},{"id":18604319,"file_name":"h_3.png","project_id":847538,"asset_id":778382,"created_at":"2024-09-25T14:43:14.415+08:00","updated_at":"2024-09-25T14:43:14.415+08:00"},{"id":18604320,"file_name":"h_4.png","project_id":847538,"asset_id":778383,"created_at":"2024-09-25T14:43:14.419+08:00","updated_at":"2024-09-25T14:43:14.419+08:00"},{"id":18604321,"file_name":"put.ogg","project_id":847538,"asset_id":778384,"created_at":"2024-09-25T14:43:14.433+08:00","updated_at":"2024-09-25T14:43:14.433+08:00"},{"id":18604322,"file_name":"s3.png","project_id":847538,"asset_id":778385,"created_at":"2024-09-25T14:43:14.438+08:00","updated_at":"2024-09-25T14:43:14.438+08:00"},{"id":18604323,"file_name":"s4.png","project_id":847538,"asset_id":778386,"created_at":"2024-09-25T14:43:14.443+08:00","updated_at":"2024-09-25T14:43:14.443+08:00"},{"id":18604324,"file_name":"n_2.png","project_id":847538,"asset_id":778387,"created_at":"2024-09-25T14:43:14.447+08:00","updated_at":"2024-09-25T14:43:14.447+08:00"},{"id":18604325,"file_name":"n_3.png","project_id":847538,"asset_id":778388,"created_at":"2024-09-25T14:43:14.452+08:00","updated_at":"2024-09-25T14:43:14.452+08:00"},{"id":18604326,"file_name":"n_8.png","project_id":847538,"asset_id":778389,"created_at":"2024-09-25T14:43:14.457+08:00","updated_at":"2024-09-25T14:43:14.457+08:00"},{"id":18604327,"file_name":"n_9.png","project_id":847538,"asset_id":778390,"created_at":"2024-09-25T14:43:14.461+08:00","updated_at":"2024-09-25T14:43:14.461+08:00"},{"id":18604328,"file_name":"p_4.png","project_id":847538,"asset_id":778391,"created_at":"2024-09-25T14:43:14.466+08:00","updated_at":"2024-09-25T14:43:14.466+08:00"},{"id":18604329,"file_name":"p_5.png","project_id":847538,"asset_id":778392,"created_at":"2024-09-25T14:43:14.471+08:00","updated_at":"2024-09-25T14:43:14.471+08:00"},{"id":18604330,"file_name":"h_1.png","project_id":847538,"asset_id":778393,"created_at":"2024-09-25T14:43:14.476+08:00","updated_at":"2024-09-25T14:43:14.476+08:00"},{"id":18604331,"file_name":"h_2.png","project_id":847538,"asset_id":778394,"created_at":"2024-09-25T14:43:14.481+08:00","updated_at":"2024-09-25T14:43:14.481+08:00"},{"id":18604332,"file_name":"p_6.png","project_id":847538,"asset_id":778395,"created_at":"2024-09-25T14:43:14.485+08:00","updated_at":"2024-09-25T14:43:14.485+08:00"},{"id":18604333,"file_name":"p_7.png","project_id":847538,"asset_id":778396,"created_at":"2024-09-25T14:43:14.490+08:00","updated_at":"2024-09-25T14:43:14.490+08:00"},{"id":18604334,"file_name":"p_10.png","project_id":847538,"asset_id":778397,"created_at":"2024-09-25T14:43:14.494+08:00","updated_at":"2024-09-25T14:43:14.494+08:00"},{"id":18604335,"file_name":"p_11.png","project_id":847538,"asset_id":778398,"created_at":"2024-09-25T14:43:14.514+08:00","updated_at":"2024-09-25T14:43:14.514+08:00"},{"id":18604336,"file_name":"s1.png","project_id":847538,"asset_id":778399,"created_at":"2024-09-25T14:43:14.518+08:00","updated_at":"2024-09-25T14:43:14.518+08:00"},{"id":18604337,"file_name":"s2.png","project_id":847538,"asset_id":778400,"created_at":"2024-09-25T14:43:14.524+08:00","updated_at":"2024-09-25T14:43:14.524+08:00"},{"id":18604338,"file_name":"s5.png","project_id":847538,"asset_id":778401,"created_at":"2024-09-25T14:43:14.529+08:00","updated_at":"2024-09-25T14:43:14.529+08:00"},{"id":18604339,"file_name":"text.png","project_id":847538,"asset_id":778402,"created_at":"2024-09-25T14:43:14.534+08:00","updated_at":"2024-09-25T14:43:14.534+08:00"},{"id":18604340,"file_name":"n_0.png","project_id":847538,"asset_id":778403,"created_at":"2024-09-25T14:43:14.539+08:00","updated_at":"2024-09-25T14:43:14.539+08:00"},{"id":18604341,"file_name":"n_1.png","project_id":847538,"asset_id":778404,"created_at":"2024-09-25T14:43:14.543+08:00","updated_at":"2024-09-25T14:43:14.543+08:00"},{"id":18604342,"file_name":"p_12.png","project_id":847538,"asset_id":778405,"created_at":"2024-09-25T14:43:14.548+08:00","updated_at":"2024-09-25T14:43:14.548+08:00"},{"id":18604343,"file_name":"rules.png","project_id":847538,"asset_id":778406,"created_at":"2024-09-25T14:43:14.555+08:00","updated_at":"2024-09-25T14:43:14.555+08:00"},{"id":18604344,"file_name":"n_4.png","project_id":847538,"asset_id":778407,"created_at":"2024-09-25T14:43:14.560+08:00","updated_at":"2024-09-25T14:43:14.560+08:00"},{"id":18604345,"file_name":"n_5.png","project_id":847538,"asset_id":778408,"created_at":"2024-09-25T14:43:14.565+08:00","updated_at":"2024-09-25T14:43:14.565+08:00"},{"id":18604346,"file_name":"p_2.png","project_id":847538,"asset_id":778409,"created_at":"2024-09-25T14:43:14.569+08:00","updated_at":"2024-09-25T14:43:14.569+08:00"},{"id":18604347,"file_name":"p_3.png","project_id":847538,"asset_id":778410,"created_at":"2024-09-25T14:43:14.574+08:00","updated_at":"2024-09-25T14:43:14.574+08:00"},{"id":18604348,"file_name":"n_6.png","project_id":847538,"asset_id":778411,"created_at":"2024-09-25T14:43:14.578+08:00","updated_at":"2024-09-25T14:43:14.578+08:00"},{"id":18604349,"file_name":"n_7.png","project_id":847538,"asset_id":778412,"created_at":"2024-09-25T14:43:14.583+08:00","updated_at":"2024-09-25T14:43:14.583+08:00"}]
橘蘋學習平台
橘蘋學習平台
我的作品
檢視專案頁
匯出
複製
匯入
刪除
截圖
幫助
用手機掃描下方 QRCode 進行安裝
或您也可以
下載 APK
到這台電腦