Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (406)
games submitted by our members
Games in WIP (290)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Checking collisions on hex  (Read 290 times)
0 Members and 1 Guest are viewing this topic.
Offline re4der

JGO Visitor




« Posted 2013-03-17 17:15:45 »

Salve!
I've recently been working on java game with my friend. Last few days we've spent trying to make a formula checking collisions. Prototype in java 2D worked well, but after porting it to our game we ended with hex-throwing simulator. We're unable to find a miastake. Mouse input is surely correct.
Code is:
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
23  
24  
25  
26  
27  
28  
29  
30  
31  
32  
33  
34  
35  
36  
37  
38  
package Objects.Ships;

import Objects.Entity;
import Objects.Ships.Parts.Functionals.Functional;
import Objects.Ships.Parts.Hex;
import java.util.ArrayList;

public abstract class Ship extends Entity {
   
    public Ship(float x, float y, float scaleX, float scaleY, float rotate, int xHexes, int yHexes) {
        this.x = x;
        this.y = y;
        this.scaleX = scaleX;
        this.scaleY = scaleY;
        this.rotate = rotate;
        this.xHexes = xHexes;
        this.yHexes = yHexes;
        hex = new Hex[xHexes][yHexes];
        setCenters();
    }
   
    protected void setCenters() {
        float xHex = xHexes;
        float yHex = yHexes;
        centerX = scaleX*(float)Math.floor(yHex/2f)*2;
        centerY = scaleY*(float)Math.floor(xHex/2f)*4f/3f;
    }
   
    public Hex[][] hex;
    protected ArrayList<Functional> parts;
    public float speedX=0;
    public float speedY=0;
    public float centerX;
    public float centerY;
    public int xHexes;
    public int yHexes;
   
}

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
23  
24  
25  
26  
27  
28  
29  
30  
31  
package Interface.GameInterface.DesignStudio;

import Core.Graphics.SL;
import Core.Graphics.TL;
import Core.Input.In;
import Core.Switch;
import Lib.Graphics.GCore;
import Objects.Ships.Parts.StructuralHex;
import Objects.Ships.PlayerShip;
import Objects.Ships.Ship;
import org.lwjgl.opengl.Display;

public class ModifyStructuralHex {
   
    public void add(Ship ship){
       
        int x = In.mouse.x+(int)GCore.renderer.getCameraX()-Display.getWidth()/2;
        int y = In.mouse.y+(int)GCore.renderer.getCameraY()-Display.getHeight()/2;
       
        for(int xCount = 0; xCount<ship.xHexes; xCount++){
            for (int yCount = 1; yCount<ship.yHexes; yCount++) {                
                if(ship.hex[xCount][yCount].checkCollisions(x, y))
                    ship.hex[xCount][yCount] = new StructuralHex(ship, xCount, yCount, 10);
                Switch.blankHexCursor = false;
            }
        }    
       
       
       
    }
}

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
23  
24  
25  
26  
27  
28  
29  
30  
31  
32  
33  
34  
35  
36  
37  
38  
39  
40  
41  
42  
43  
44  
45  
package Objects.Ships.Parts;

import Core.Input.In;
import Objects.Ships.PlayerShip;
import Objects.Ships.Ship;

public abstract class Hex {
   
    protected int posX;
    protected int posY;
    protected Ship father;
   
    public Hex(Ship father, int posX, int posY) {
        this.father = father;
        this.posX = posX;
        this.posY = posY;
    }
   
    public abstract void update();
   
    public boolean checkCollisions(int inputX, int inputY){
        boolean collision = true;
       
        int sX = (int)(((posY * father.scaleY*2) * Math.cos(father.rotate))-((posX * father.scaleX*4f/3f) * Math.sin(father.rotate)));
        int sY = (int)(((posY * father.scaleY*2) * Math.sin(father.rotate))+((posX * father.scaleX*4f/3f) * Math.cos(father.rotate)));
        for (int i=0; i<3; i++) {
            int x1 = (int)(sX + father.scaleX * Math.cos(i * 2 * Math.PI / 6 + father.rotate)-father.centerX);
            int y1 = (int)(sY + father.scaleY * Math.sin(i * 2 * Math.PI / 6 + father.rotate)-father.centerY);
            int x2 = (int)(sX + father.scaleX * Math.cos((i+1) * 2 * Math.PI / 6 + father.rotate)-father.centerX);
            int y2 = (int)(sY + father.scaleY * Math.sin((i+1) * 2 * Math.PI / 6 + father.rotate)-father.centerY);
            int x3 = (int)(sX + father.scaleX * Math.cos((i+3) * 2 * Math.PI / 6 + father.rotate)-father.centerX);
            int y3 = (int)(sY + father.scaleY * Math.sin((i+3) * 2 * Math.PI / 6 + father.rotate)-father.centerY);
            int x4 = (int)(sX + father.scaleX * Math.cos((i+4) * 2 * Math.PI / 6 + father.rotate)-father.centerX);
            int y4 = (int)(sY + father.scaleY * Math.sin((i+4) * 2 * Math.PI / 6 + father.rotate)-father.centerY);

            int calc1 = (x2-x1)*(inputY-y1)-(y2-y1)*(inputX-x1);
            int calc2 = (x4-x3)*(inputY-y3)-(y4-y3)*(inputX-x3);
            if (calc1*calc2<0) {
                collision=false;
            }
        }
        return collision;
    }
   
}

And there's how we're filling ship array with hexs:
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
public class ShipUtils {

        public static void collisionCheckFill(Ship ship){
            for(int xCount = 0; xCount<ship.xHexes; xCount++){
                for (int yCount = 0; yCount<ship.yHexes; yCount++) {
                    ship.hex[xCount][yCount] = new CollisionHex(ship, xCount, yCount);
                }
            }

            ship.hex[11][7] = new StructuralHex(ship, 11, 7, 10);
           
        }
       
}
Offline jonjava

JGO Knight


Medals: 32



« Reply #1 - Posted 2013-03-18 06:27:51 »

Math problem :V

http://www.playchilla.com/how-to-check-if-a-point-is-inside-a-hexagon

Offline NegativeZero

Junior Member


Projects: 1


Zero but not.


« Reply #2 - Posted 2013-03-18 09:27:58 »

Off-topic:

miastake

I really like this.
Pages: [1]
  ignore  |  Print  
 
 

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Browse for soundtracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (64 views)
2013-05-17 21:29:12

alaslipknot (73 views)
2013-05-16 21:24:48

gouessej (104 views)
2013-05-16 00:53:38

gouessej (101 views)
2013-05-16 00:17:58

theagentd (111 views)
2013-05-15 15:01:13

theagentd (100 views)
2013-05-15 15:00:54

StreetDoggy (145 views)
2013-05-14 15:56:26

kutucuk (168 views)
2013-05-12 17:10:36

kutucuk (167 views)
2013-05-12 15:36:09

UnluckyDevil (176 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.267 seconds with 20 queries.