日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程语言 > python >内容正文

python

【Python植物大战僵尸军团来袭】“大家快醒一醒、一大波僵尸来了”

發(fā)布時間:2025/3/21 python 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【Python植物大战僵尸军团来袭】“大家快醒一醒、一大波僵尸来了” 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

前言

大家好!我是梨子同學(xué)!

希望大家多多支持我!哈哈

為了感謝每一個關(guān)注我的小可愛:💓每篇文章的項(xiàng)目源碼都是無償分享滴💓👇👇👇

點(diǎn)這里藍(lán)色這行字體自取,需要什么源碼記得說標(biāo)題名字哈!私信我也可!

小編也一直在學(xué)習(xí)編程,如果代碼小程序出現(xiàn)錯誤歡迎大家評論區(qū)留言哈!

最后——如果文章有幫助到你,記得“關(guān)注”、“點(diǎn)贊”、“評論”三連哦~

正文

?植物大戰(zhàn)僵尸的人氣可謂是經(jīng)久不衰,晃著腦袋生產(chǎn)陽光的向日葵,突突突吐著子彈的豌豆射手!?

行動遲緩種類豐富的僵尸……印象最深的是“僵尸吃掉了你的腦子!”還有瘋狂的戴夫,無一不喚醒

著我們的童年記憶?

山民們闖到哪一關(guān)了?解鎖了哪些植物?

對!沒錯,就是這個大工程今天帶大家做一款Python版本的植物大戰(zhàn)僵尸游戲!

正文

首先準(zhǔn)備好相應(yīng)的素材如下:【超多僅展示小部分】

定義所有的植物卡片的名稱和屬性都保存在單獨(dú)的list中,每個list index都對應(yīng)一種植物,每個植物

卡片是一個單獨(dú)的Card類,用來顯示這個植物,然后每個植設(shè)置植物的卡片欄目。

import pygame as pg from .. import tool from .. import constants as cPANEL_Y_START = 87 PANEL_X_START = 22 PANEL_Y_INTERNAL = 74 PANEL_X_INTERNAL = 53 CARD_LIST_NUM = 8card_name_list = [c.CARD_SUNFLOWER, c.CARD_PEASHOOTER, c.CARD_SNOWPEASHOOTER, c.CARD_WALLNUT,c.CARD_CHERRYBOMB, c.CARD_THREEPEASHOOTER, c.CARD_REPEATERPEA, c.CARD_CHOMPER,c.CARD_PUFFMUSHROOM, c.CARD_POTATOMINE, c.CARD_SQUASH] plant_name_list = [c.SUNFLOWER, c.PEASHOOTER, c.SNOWPEASHOOTER, c.WALLNUT,c.CHERRYBOMB, c.THREEPEASHOOTER, c.REPEATERPEA, c.CHOMPER,c.PUFFMUSHROOM, c.POTATOMINE, c.SQUASH] plant_sun_list = [50, 100, 175, 50, 150, 325, 200, 150, 0, 25, 50] plant_frozen_time_list = [0, 5000, 5000, 10000, 5000, 5000, 5000, 5000, 8000, 8000, 8000] all_card_list = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]def getSunValueImage(sun_value):font = pg.font.SysFont(None, 22)width = 32msg_image = font.render(str(sun_value), True, c.NAVYBLUE, c.LIGHTYELLOW)msg_rect = msg_image.get_rect()msg_w = msg_rect.widthimage = pg.Surface([width, 17])x = width - msg_wimage.fill(c.LIGHTYELLOW)image.blit(msg_image, (x, 0), (0, 0, msg_rect.w, msg_rect.h))image.set_colorkey(c.BLACK)return imageclass Card():def __init__(self, x, y, name_index, scale=0.78):self.loadFrame(card_name_list[name_index], scale)self.rect = self.image.get_rect()self.rect.x = xself.rect.y = yself.name_index = name_indexself.sun_cost = plant_sun_list[name_index]self.frozen_time = plant_frozen_time_list[name_index]self.frozen_timer = -self.frozen_timeself.select = Truedef loadFrame(self, name, scale):frame = tool.GFX[name]rect = frame.get_rect()width, height = rect.w, rect.hself.image = tool.get_image(frame, 0, 0, width, height, c.BLACK, scale)def checkMouseClick(self, mouse_pos):x, y = mouse_posif(x >= self.rect.x and x <= self.rect.right andy >= self.rect.y and y <= self.rect.bottom):return Truereturn Falsedef canClick(self, sun_value, current_time):if self.sun_cost <= sun_value and (current_time - self.frozen_timer) > self.frozen_time:return Truereturn Falsedef canSelect(self):return self.selectdef setSelect(self, can_select):self.select = can_selectif can_select:self.image.set_alpha(255)else:self.image.set_alpha(128)def setFrozenTime(self, current_time):self.frozen_timer = current_timedef update(self, sun_value, current_time):if (self.sun_cost > sun_value or(current_time - self.frozen_timer) <= self.frozen_time):self.image.set_alpha(128)else:self.image.set_alpha(255)def draw(self, surface):surface.blit(self.image, self.rect)class MenuBar():def __init__(self, card_list, sun_value):self.loadFrame(c.MENUBAR_BACKGROUND)self.rect = self.image.get_rect()self.rect.x = 10self.rect.y = 0self.sun_value = sun_valueself.card_offset_x = 32self.setupCards(card_list)def loadFrame(self, name):frame = tool.GFX[name]rect = frame.get_rect()frame_rect = (rect.x, rect.y, rect.w, rect.h)self.image = tool.get_image(tool.GFX[name], *frame_rect, c.WHITE, 1)def update(self, current_time):self.current_time = current_timefor card in self.card_list:card.update(self.sun_value, self.current_time)def createImage(self, x, y, num):if num == 1:returnimg = self.imagerect = self.image.get_rect()width = rect.wheight = rect.hself.image = pg.Surface((width * num, height)).convert()self.rect = self.image.get_rect()self.rect.x = xself.rect.y = yfor i in range(num):x = i * widthself.image.blit(img, (x,0))self.image.set_colorkey(c.BLACK)def setupCards(self, card_list):self.card_list = []x = self.card_offset_xy = 8for index in card_list:x += 55self.card_list.append(Card(x, y, index))def checkCardClick(self, mouse_pos):result = Nonefor card in self.card_list:if card.checkMouseClick(mouse_pos):if card.canClick(self.sun_value, self.current_time):result = (plant_name_list[card.name_index], card.sun_cost)breakreturn resultdef checkMenuBarClick(self, mouse_pos):x, y = mouse_posif(x >= self.rect.x and x <= self.rect.right andy >= self.rect.y and y <= self.rect.bottom):return Truereturn Falsedef decreaseSunValue(self, value):self.sun_value -= valuedef increaseSunValue(self, value):self.sun_value += valuedef setCardFrozenTime(self, plant_name):for card in self.card_list:if plant_name_list[card.name_index] == plant_name:card.setFrozenTime(self.current_time)breakdef drawSunValue(self):self.value_image = getSunValueImage(self.sun_value)self.value_rect = self.value_image.get_rect()self.value_rect.x = 21self.value_rect.y = self.rect.bottom - 21self.image.blit(self.value_image, self.value_rect)def draw(self, surface):self.drawSunValue()surface.blit(self.image, self.rect)for card in self.card_list:card.draw(surface)class Panel():def __init__(self, card_list, sun_value):self.loadImages(sun_value)self.selected_cards = []self.selected_num = 0self.setupCards(card_list)def loadFrame(self, name):frame = tool.GFX[name]rect = frame.get_rect()frame_rect = (rect.x, rect.y, rect.w, rect.h)return tool.get_image(tool.GFX[name], *frame_rect, c.WHITE, 1)def loadImages(self, sun_value):self.menu_image = self.loadFrame(c.MENUBAR_BACKGROUND)self.menu_rect = self.menu_image.get_rect()self.menu_rect.x = 0self.menu_rect.y = 0self.panel_image = self.loadFrame(c.PANEL_BACKGROUND)self.panel_rect = self.panel_image.get_rect()self.panel_rect.x = 0self.panel_rect.y = PANEL_Y_STARTself.value_image = getSunValueImage(sun_value)self.value_rect = self.value_image.get_rect()self.value_rect.x = 21self.value_rect.y = self.menu_rect.bottom - 21self.button_image = self.loadFrame(c.START_BUTTON)self.button_rect = self.button_image.get_rect()self.button_rect.x = 155self.button_rect.y = 547def setupCards(self, card_list):self.card_list = []x = PANEL_X_START - PANEL_X_INTERNALy = PANEL_Y_START + 43 - PANEL_Y_INTERNALfor i, index in enumerate(card_list):if i % 8 == 0:x = PANEL_X_START - PANEL_X_INTERNALy += PANEL_Y_INTERNALx += PANEL_X_INTERNALself.card_list.append(Card(x, y, index, 0.75))def checkCardClick(self, mouse_pos):delete_card = Nonefor card in self.selected_cards:if delete_card: # when delete a card, move right cards to leftcard.rect.x -= 55elif card.checkMouseClick(mouse_pos):self.deleteCard(card.name_index)delete_card = cardif delete_card:self.selected_cards.remove(delete_card)self.selected_num -= 1if self.selected_num == CARD_LIST_NUM:returnfor card in self.card_list:if card.checkMouseClick(mouse_pos):if card.canSelect():self.addCard(card)breakdef addCard(self, card):card.setSelect(False)y = 8x = 78 + self.selected_num * 55self.selected_cards.append(Card(x, y, card.name_index))self.selected_num += 1def deleteCard(self, index):self.card_list[index].setSelect(True)def checkStartButtonClick(self, mouse_pos):if self.selected_num < CARD_LIST_NUM:return Falsex, y = mouse_posif (x >= self.button_rect.x and x <= self.button_rect.right andy >= self.button_rect.y and y <= self.button_rect.bottom):return Truereturn Falsedef getSelectedCards(self):card_index_list = []for card in self.selected_cards:card_index_list.append(card.name_index)return card_index_listdef draw(self, surface):self.menu_image.blit(self.value_image, self.value_rect)surface.blit(self.menu_image, self.menu_rect)surface.blit(self.panel_image, self.panel_rect)for card in self.card_list:card.draw(surface)for card in self.selected_cards:card.draw(surface)if self.selected_num == CARD_LIST_NUM:surface.blit(self.button_image, self.button_rect)

植物卡片欄目截圖如下:

設(shè)置的幾種植物截圖如下:

然后使用setupMouseImage 函數(shù)實(shí)現(xiàn)鼠標(biāo)圖片切換為選中的植物。

def setupMouseImage(self, plant_name, plant_cost):frame_list = tool.GFX[plant_name]if plant_name in tool.PLANT_RECT:data = tool.PLANT_RECT[plant_name]x, y, width, height = data['x'], data['y'], data['width'], data['height']else:x, y = 0, 0rect = frame_list[0].get_rect()width, height = rect.w, rect.hif plant_name == c.POTATOMINE or plant_name == c.SQUASH:color = c.WHITEelse:color = c.BLACKself.mouse_image = tool.get_image(frame_list[0], x, y, width, height, color, 1)self.mouse_rect = self.mouse_image.get_rect()pg.mouse.set_visible(False)self.drag_plant = Trueself.plant_name = plant_nameself.plant_cost = plant_costdef removeMouseImage(self):pg.mouse.set_visible(True)self.drag_plant = Falseself.mouse_image = Noneself.hint_image = Noneself.hint_plant = False

效果圖如下:開始界面只有一個關(guān)卡,but一個關(guān)卡有不同的關(guān)。

?

?嗯哼~好啦其實(shí)后面關(guān)卡有驚喜的啦~這里就不透露了~

總結(jié)

這款植物大戰(zhàn)僵尸游戲界面還是蠻不錯的啦 還原度很高~

關(guān)注小編獲取更多精彩內(nèi)容!記得點(diǎn)擊下方傳送門拉——👇👇👇

?制作不易,記得一鍵三連哦!?如需打包好的源碼+素材免費(fèi)分享滴傳送門

總結(jié)

以上是生活随笔為你收集整理的【Python植物大战僵尸军团来袭】“大家快醒一醒、一大波僵尸来了”的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。