Skip to content
Advertisement

Java Collision detection between different classes

I am making a simple game about shooting enemies and avoiding obstacles, but I have a problem with detecting collisions because I’ve got a lot of classes for every type of game object (player,enemy,obstacle,drop,bullet, etc.).

JavaScript

And it won’t work because a doesn’t have ‘pos’, etc, so how can I do it so it works for every class? I’ve read about interfaces but I don’t really know how can it help me.

Advertisement

Answer

You could cast the Object types to your own types, However considering that there are multiple custom object types, attempting to take that approach is not efficient therefore you can use an interface.

Interface declaration:

JavaScript

your classes:

JavaScript

then your doCollide will become:

JavaScript

Another option would be to create an abstract base class with an abstract getPosition() method and let each type provide their own implementations of it.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement