首页 > 其他分享 >有了chatGPT搞IT的是否要下岗了!看chatGPT怎样写代码!

有了chatGPT搞IT的是否要下岗了!看chatGPT怎样写代码!

时间:2023-07-15 19:31:46浏览次数:39  
标签:direction 代码 CELL WINDOW 下岗 pygame chatGPT self SIZE

能给我写一个贪吃蛇游戏代码吗?

当然可以!以下是一个简单的贪吃蛇游戏的 Python 代码示例:

import pygame import random

游戏窗口大小

WINDOW_WIDTH = 800 WINDOW_HEIGHT = 600

蛇身和食物大小

CELL_SIZE = 20

颜色定义

BLACK = (0, 0, 0) GREEN = (0, 255, 0) RED = (255, 0, 0)

初始化 Pygame

pygame.init() window = pygame.display.set_mode((WINDOW_WIDTH, WINDOW_HEIGHT)) pygame.display.set_caption("贪吃蛇游戏")

蛇类

class Snake: def init(self): self.body = [(WINDOW_WIDTH/2, WINDOW_HEIGHT/2)] self.direction = random.choice(["UP", "DOWN", "LEFT", "RIGHT"])

def move(self):
    x, y = self.body[0]
    if self.direction == "UP":
        y -= CELL_SIZE
    elif self.direction == "DOWN":
        y += CELL_SIZE
    elif self.direction == "LEFT":
        x -= CELL_SIZE
    elif self.direction == "RIGHT":
        x += CELL_SIZE

    self.body.insert(0, (x, y))
    self.body.pop()

def change_direction(self, direction):
    if direction == "UP" and self.direction != "DOWN":
        self.direction = direction
    elif direction == "DOWN" and self.direction != "UP":
        self.direction = direction
    elif direction == "LEFT" and self.direction != "RIGHT":
        self.direction = direction
    elif direction == "RIGHT" and self.direction != "LEFT":
        self.direction = direction

def draw(self):
    for x, y in self.body:
        pygame.draw.rect(window, GREEN, (x, y, CELL_SIZE, CELL_SIZE))

def check_collision(self):
    x, y = self.body[0]
    if x < 0 or x >= WINDOW_WIDTH or y < 0 or y >= WINDOW_HEIGHT:
        return True
    for body_part in self.body[1:]:
        if body_part == (x, y):
            return True
    return False

def eat_food(self, food):
    if self.body[0] == food.position:
        self.body.append((food.position[0], food.position[1]))
        food.generate()

食物类

class Food: def init(self): self.position = ( random.randint(0, (WINDOW_WIDTH-CELL_SIZE) // CELL_SIZE) * CELL_SIZE, random.randint(0, (WINDOW_HEIGHT-CELL_SIZE) // CELL_SIZE) * CELL_SIZE )

def draw(self):
    pygame.draw.rect(window, RED, (self.position[0], self.position[1], CELL_SIZE, CELL_SIZE))

def generate(self):
    self.position = (
        random.randint(0, (WINDOW_WIDTH-CELL_SIZE) // CELL_SIZE) * CELL_SIZE,
        random.randint(0, (WINDOW_HEIGHT-CELL_SIZE) // CELL_SIZE) * CELL_SIZE
    )

snake = Snake() food = Food()

clock = pygame.time.Clock()

游戏主循环

running = True while running: for event in pygame.event.get(): if event.type == pygame.QUIT: running = False elif event.type == pygame.KEYDOWN: if event.key == pygame.K_UP: snake.change_direction("UP") elif event.key == pygame.K_DOWN: snake.change_direction("DOWN") elif event.key == pygame.K_LEFT: snake.change_direction("LEFT") elif event.key == pygame.K_RIGHT: snake.change_direction("RIGHT")

snake.move()

if snake.check_collision():
    running = False

snake.eat_food(food)

window.fill(BLACK)
snake.draw()
food.draw()
pygame.display.flip()

clock.tick(10)

pygame.quit()

这段代码使用了 Pygame 库来实现游戏窗口和图形的绘制,以及捕获键盘事件。贪吃蛇的移动、吃食物和碰撞检测等逻辑也在代码中实现。你可以将代码复制到 Python 环境中执行,就可以玩这个简单的贪吃蛇游戏了。(附带图片)

人工智能真的要改变我们未来的生活环境了,如还在排斥着不去接收新鲜事物。未来淘汰的就是我们这些不去主动学习,不去接收新鲜事物的一群人。

有了chatGPT搞IT的是否要下岗了!看chatGPT怎样写代码!_chatGPT

有了chatGPT搞IT的是否要下岗了!看chatGPT怎样写代码!_chatGPT_02

有了chatGPT搞IT的是否要下岗了!看chatGPT怎样写代码!_人工智能_03

有了chatGPT搞IT的是否要下岗了!看chatGPT怎样写代码!_Python_04

有了chatGPT搞IT的是否要下岗了!看chatGPT怎样写代码!_Python_05

有了chatGPT搞IT的是否要下岗了!看chatGPT怎样写代码!_贪吃蛇_06



标签:direction,代码,CELL,WINDOW,下岗,pygame,chatGPT,self,SIZE
From: https://blog.51cto.com/u_16170099/6733195

相关文章

  • Python练手小项目——简易版基础SQL模板代码生成器
    1、效果图2、代码源码-ui.py:fromtkinterimport*fromtkinterimportscrolledtext,messageboxfromtkinter.ttkimportComboboximportpymysqldefinit():#创建窗口:实例化一个窗口对象window=Tk()#窗口大小window.geometry("900x550")......
  • ++b 和 a++ 的区别 看汇编代码
    汇编代码解释如下intx=a++;00F088338B45F8moveax,dwordptr[a]00F088368945E0movdwordptr[x],eax00F088398B4DF8movecx,dwordptr[a]00F0883C83C101a......
  • B站视频WPF实战教程修改代码
    P36HttpRestClient.cs部分代码publicasyncTask<ApiResponse>ExecuteAsync(BaseRequestbaseRequest){//urivaruri=newUri(apiUrl+baseRequest.Route);//newrestrequest//adduriv......
  • 代码随想录算法训练营第三十一天| 62.不同路径 63. 不同路径 II
    62.不同路径思路:因为只能向左,和向下,因此只能是前面的加上左边的,递推公式较为简单代码:1intuniquePaths(intm,intn){2if(m==1||n==1)return1;34vector<vector<int>>nums(m,vector<int>(n,1));56for(inti=1;i<m;i++......
  • 使用docker部署chatgpt-on-wechat
    目标:能够调用chatgpt接口并回复微信proxy部署(海外服务器不需要此选项)下载、配置proxymkdir-p/data/clashcd/data/clashwgethttps://github.com/Dreamacro/clash/releases/download/v1.17.0/clash-linux-amd64-v1.17.0.gzgzip-dclash-linux-amd64-v1.17.0.gzchmoda+......
  • VS2015 C++代码内存泄漏
    在可能泄漏的文件头部加入下面几行(保证malloc和new的泄漏都可以检测到)#define_CRTDBG_MAP_ALLOC#include<crtdbg.h>#ifdef_DEBUG//重载new运算符#definenewnew(_NORMAL_BLOCK,__FILE__,__LINE__)#endif程序运行起始位置:_CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF|_C......
  • C#代码获取C#的版本
    转自:https://mp.weixin.qq.com/s/44dtM_wI4wIQxSkTGGf_7A用C#代码获取当前C#版本,疯了吧,获取它干啥?有时候需要在没有.NET环境的机器上运行C#,临时运行一下又不想装环境,这时候就可以通过在线的浏览器C#环境运行C#,比如微软的try.dot.net,那么怎么知道是哪个C#版本呢?低版本的C#是不......
  • 如何修改dll代码后重新打包
    前期使用反编译工具,例如:dnSpy,打开指定dll,展开dll后,右键可对其命名空间,模块,程序集进行编辑。因为缺少源码,反编译后的dll代码与源码存在差异,导致编译后的dll大概率会报错,无法修改代码后重新打包,如果要修改dll里的代码并重新打包,需要用到微软自带反编译工具。路径:C:\ProgramFiles(......
  • 当你的代码以奇怪的姿势跑起来, 千万不要动它~
    编程的第一法则:如果你的代码以某种莫名方式跑起来了,就不要再碰它了。造成这种问题有很多原因,常见的就是屎山代码如果第一个程序员没考虑太多,用了ifelse。新需求出现时,后面接受的程序员不愿意重新建构,都往后面加ifelse。一年又一年,一代又一代,从“粪球”到“屎山”,大概你能做的......
  • 每日一个 ChatGPT 使用小技巧系列之4:使用 AI 工具对 SAP ABAP 代码的编写质量进行打分
    本系列之前的文章:与其整天担心AI会取代程序员,不如先让AI帮助自己变得更强大每日一个ChatGPT使用小技巧系列之1-给出提纲或者素材,让ChatGPT帮你写作每日一个ChatGPT使用小技巧系列之2-用ChatGPT研读SAPABAPBAPI的实现源代码每日一个ChatGPT使用......