Code Monkey home page Code Monkey logo

Comments (3)

cxong avatar cxong commented on May 12, 2024

This is an interesting question as the shield might be a different entity type.

Recall that the game has various entity types with respect to collision: mobile objects, objects, actors and tiles (walls, doors). Mobile objects and actors collide with everything else, but the collisions have different behaviour depending on type. Mobile objects do not collide with each other, but actors do.

For shields, they have to collide with mobile objects, but probably not anything else. There is no current entity type that satisfies this, so shields must be in its own type. It could be a special type of object too, but note that object has some restrictions such as inability to move.

This raises the question of whether there could be other weapons that could fall under this category - some deflector bullets perhaps?

Then there's the question of exactly how to implement the shield entity. If it were a forcefield then we can have a static entity that is constantly created and destroyed, giving the illusion of moving with the player. Will this work for traditional-looking shields, or will it have to be a custom entity type that moves with the player?

from cdogs-sdl.

cxong avatar cxong commented on May 12, 2024

There's another option, for more of a "force field" feel. In Little Fighter, one of the characters has the ability to create a force field that reflects all energy shots. This is easier to implement, although it has custom collision logic - don't collide with teammates, collide (and hit) enemies, and reflect mobile objects (also changing its owner!)

from cdogs-sdl.

cxong avatar cxong commented on May 12, 2024

Need to implement #472 first

from cdogs-sdl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.