# 反恐精英
# 1. 对象分析
# 2. 对象属性分析
# 3. 对象方法分析
#playwriht_python
import time

class Gun:
    def __init__(self):
        self.clip = None
    def instll_clip_clip(self,clip):
        if not self.clip:
            self.clip = clip
            print("装弹夹成功")
        else:
            print("枪已经有弹夹了")
class Actor:
    def __init__(self, name):
        self.name = name #姓名
        self.HP = 100 #血量
        self.PP = 0 #护甲
    def install_clip(self,clip,bullet):
        clip.install_bullet(bullet)
    def install_gun(self, clip, gun: Gun):
        gun.instll_clip_clip(clip)
    def fire(self):
        pass
class Bullet:
    def __init__(self):
        self.damage = 40
class Clip:
    def __init__(self):
        self.bullet_list = []
        self.capacity = 100
    def install_bullet(self,bullet):
        if len(self.bullet_list) < self.capacity:
            # print("装弹中<<<<")
            # time.sleep(0.5)
            # print("装弹中<<<<<<<<<<<<<<<")
            self.bullet_list.append(bullet)
            print("当前子弹容量{}/{}".format(len(self.bullet_list),self.capacity))
        else:
            print("弹夹已满,装弹失败")

actor = Actor("杨威")
gun = Gun()
clip = Clip()
while True:
    bullet = Bullet()
    actor.install_clip(clip, bullet)
    if len(clip.bullet_list) > 19:
        break
actor.install_gun(clip,gun)

 

本文地址:https://blog.csdn.net/qq_37272891/article/details/110874633