{"id":2028,"date":"2021-11-12T17:11:52","date_gmt":"2021-11-12T09:11:52","guid":{"rendered":"http:\/\/cnliutz.uicp.io\/?p=2028"},"modified":"2021-11-12T17:11:52","modified_gmt":"2021-11-12T09:11:52","slug":"python-pygame%e8%b0%83%e8%89%b2%e6%9d%bf%e7%bb%98%e5%9b%be","status":"publish","type":"post","link":"http:\/\/xnw60rlg.ipyingshe.net:5347\/?p=2028","title":{"rendered":"python&#8211;pygame\u8c03\u8272\u677f\u7ed8\u56fe"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>#\u8c03\u8272\u677f\u7ed8\u56fe\nimport\tpygame\npygame.init()\nscreen = pygame.display.set_mode(&#91;800,600])\npygame.display.set_caption(\"\u62d6\u52a8\u9f20\u6807\u5de6\u952e\u6765\u753b\u753b\")\nmousedown = False\nunfinished=True\n\nwhite = (255,255,255)\nred = (255,50,50)\nyellow = (230,230,50)\nblue = (0,0,255)\n\npygame.draw.rect(screen,white,(0,0,50,50),0)\npygame.draw.rect(screen,red,(50,0,50,50),0)\npygame.draw.rect(screen,yellow,(100,0,50,50),0)\npygame.draw.rect(screen,blue,(150,0,50,50),0)\ncolor=white\nwhile unfinished:\n\tfor event in pygame.event.get():\n\t\tif event.type==pygame.QUIT:\n\t\t\tunfinished = False\n\t\tif event.type == pygame.MOUSEBUTTONDOWN:\n\t\t\tmousedown = True\n\t\tif event.type == pygame.MOUSEBUTTONUP:\n\t\t\tmousedown = False\n\tif mousedown:\n\t\tspot = pygame.mouse.get_pos()\n\t\t#spot&#91;0]X\u5750\u6807,spot&#91;1]Y\u5750\u6807\n\t\tif spot&#91;0]&lt;=50 and spot&#91;1]&lt;=50:\n\t\t\tcolor = white\n\t\t\tprint(color)\n\t\telif spot&#91;0]&lt;=100 and spot&#91;1]&lt;=50:\n\t\t\tcolor = red\n\t\t\tprint(color)\n\t\telif spot&#91;0]&lt;=150 and spot&#91;1]&lt;=50:\n\t\t\tcolor = yellow\n\t\t\tprint(color)\n\t\telif spot&#91;0]&lt;=200 and spot&#91;1]&lt;=50:\n\t\t\tcolor = blue\n\t\t\tprint(color)\n\t\tpygame.draw.circle(screen,color,spot,15)\n\tpygame.display.update()\npygame.quit()\n\n\t\t\t\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10],"tags":[],"class_list":["post-2028","post","type-post","status-publish","format-standard","hentry","category-python"],"_links":{"self":[{"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts\/2028","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2028"}],"version-history":[{"count":0,"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts\/2028\/revisions"}],"wp:attachment":[{"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2028"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2028"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/xnw60rlg.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2028"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}