Giter Site home page Giter Site logo

Cover/evasion about cdogs-sdl HOT 4 OPEN

cxong avatar cxong commented on May 12, 2024 1
Cover/evasion

from cdogs-sdl.

Comments (4)

cxong avatar cxong commented on May 12, 2024

There's a conflict between this and movement/targeting (#23), especially if two AIs are using the same weapon. That is, to avoid the enemy's line of fire, you also give yourself a bad position from which to fire.

It may be possible to resolve this conflict by having "aggressive" and "defensive" AIs, where the former will prioritise getting into a good firing position over evasion, and vice versa. For AIs using different weapons, the AI can prefer evasion until it moves close enough for its weapon's range.

There's still a potential deadlock between two defensive AIs both trying to move outside each other's line of fire, which will be interesting to see 😆

from cdogs-sdl.

cxong avatar cxong commented on May 12, 2024

This can also be generalised to avoid explosions, flames etc.

from cdogs-sdl.

cxong avatar cxong commented on May 12, 2024

Added AI running away from dangerous bullets, like flames and fireballs. This works quite well because these things tend to be slower than even normal walking speed, although frags aren't evaded well, but then again these are hard to avoid in general.

Avoiding regular bullets would be harder though; not only does the AI need to look at a bigger radius, bigger if there are fast bullets, but they will need to side-step instead of run directly away. This requires a bit of trig, taking into account the bullet's trajectory, and to figure out if it's better to step to the left or right. Also, due to the abundance of bullets, it would be impractical to run away all the time - this action is a short-circuiting one for the dangerous bullets - so the AI needs to be able to do other things whilst dodging bullets.

One idea is to have the AI selectively dodge bullets. Another is for the dodge action to be of limited short circuiting - it will dodge only if the AI will not try to do some more important thing, like shooting.

It would be nice to also dodge friendly bullets, as an alternate way of solving #295

from cdogs-sdl.

cxong avatar cxong commented on May 12, 2024

One method of doing this is:

  1. Find all bullets within radius
  2. Filter by those that will hit
  • Special logic required for grenades - want to stay away from explosion
  1. Sort based on a score:
  • Damage
  • Whether it's from a friendly or player
  • Time to hit
  1. For the top N bullets, find a safe direction and move there
  • To simplify, could just take the most significant bullet and attempt to sidestep it

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.