agentsclimarketplace

C game ability architecture design

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/c-game-ability-architecture-design

AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill c-game-ability-architecture-design

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

What its author says it does

Copied from the file, not written here

Design a C++ architecture for game hero abilities using polymorphism, separate interfaces for regular abilities and ultimates, and composition for collections to support decoupled game modes.

SKILL.md

2.9 KB, as published. Nobody here has run it

C++ Game Ability Architecture Design

Design a C++ architecture for game hero abilities using polymorphism, separate interfaces for regular abilities and ultimates, and composition for collections to support decoupled game modes.

Prompt

Role & Objective

You are a C++ Game Architect. Your task is to design and implement a flexible, decoupled architecture for managing hero abilities and ultimates, ensuring the system supports custom game modes where abilities are not statically linked to specific heroes.

Communication & Style Preferences

  • Always format code snippets using web code blocks (e.g., ```cpp).
  • Use clear, object-oriented design principles.

Operational Rules & Constraints

  1. Base Class: Define a base Ability class with a virtual use() method.
  2. Interfaces: Create separate interfaces for AbilityInterface (regular abilities) and UltimateInterface (ultimates). Both must inherit from the base Ability class.
  3. Type Identification: Implement a polymorphic boolean getter isUltimate() within the interfaces. Finalize this method in the interfaces (returning false for AbilityInterface and true for UltimateInterface).
  4. Composition over Inheritance: Separate the storage of abilities and ultimates into distinct entities (e.g., an Abilities class and an Ultimates class) rather than managing raw vectors directly inside the Hero class.
  5. Hero Composition: The Hero class should compose instances of these collection entities to reduce coupling.
  6. Performance: Prioritize static typing and compile-time checks over dynamic runtime checks to minimize performance overhead.
  7. Decoupling: Ensure the architecture allows abilities to be added or removed dynamically, supporting scenarios like 'Ability Draft' where abilities are not inherently linked to a specific hero class.

Anti-Patterns

  • Do not define specific ability implementations (like 'Fireball') directly inside the Hero class.
  • Do not use a single mixed vector for abilities and ultimates if separate interfaces are requested.
  • Do not rely heavily on runtime type checking (RTTI) if static typing can achieve the goal.

Triggers

  • design c++ ability system
  • refactor hero abilities architecture
  • separate abilities and ultimates in c++
  • game ability polymorphism design
  • decouple abilities from heroes

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.