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 (405)
games submitted by our members
Games in WIP (289)
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  
  Bullet Angles  (Read 4820 times)
0 Members and 1 Guest are viewing this topic.
Offline ToXSiK

Senior Newbie





« Posted 2011-05-26 23:20:56 »

Well, geometry has finally become of use in my life, too bad I rarely payed attention in that class  Grin


So I have a character, lets call him bob.  Bob is inside of a 100 x 100 window, the center of bobs body is at (50, 50), hence he is in the middle of the screen.

The mouse position can be put anywhere around bob in this window, and we want to calculate the angle at which the mouse is in relationship 0 - 360 degrees.

Just like a unit circle (yay calc!)

I have been using Math.atan, but it only gives angles -90 - 90, is there a way to calculate these angles in relationship to a horizontal-radian line pointing to the right?

This may expain better:

Offline Abuse

JGO Coder


Medals: 2


falling into the abyss of reality


« Reply #1 - Posted 2011-05-27 01:36:42 »

Math.atan2

Make Elite IV:Dangerous happen! Pledge your backing at KICKSTARTER here!
Offline SimonH
« Reply #2 - Posted 2011-05-27 01:39:22 »

Rummaging around in my libraries I found;
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
public float getBearing(float x, float y, float x1, float y1)
    {
        float dx=x1-x;
        float dy=y1-y;
        double d=Math.atan2(dy,dx);
        if (d<0)
        {
            d=Math.PI*2+d;
        }
        return (float)d;
    }

which gives a bearing where east (1,0) is 0'

Heroes' Keep is in development.
Meanwhile try Bloodridge
Games published by our own members! Check 'em out!
Legends of Yore - The Casual Retro Roguelike
Offline cylab

JGO Knight


Medals: 30



« Reply #3 - Posted 2011-05-28 12:46:41 »

I first read Bullet Angels and thought: that would make a nice shooter name. Smiley

Mathias - I Know What [you] Did Last Summer!
Offline evilfrenchguy

Junior Member


Medals: 3



« Reply #4 - Posted 2011-06-02 15:05:30 »

I have the code to do this on my laptop. I'll come back later and comment it out and post it for you.
Offline martin

Senior Newbie





« Reply #5 - Posted 2011-06-08 14:42:36 »

Hi!
I have implemented the method that indicates the full polar coordinate (with angle in [0;2*PI]) of an input coordinate, which could be mouse-bob in your case.
Search for Coord2d.fullPolar() here: http://code.google.com/p/jzy3d/source/browse/branches/0.8.1/src/api/org/jzy3d/maths/Coord2d.java

I use it a lot and it works as expected.
Cheers,
Martin
Offline oNyx

JGO Coder


Medals: 1


pixels! :x


« Reply #6 - Posted 2011-06-09 03:56:35 »

I first read Bullet Angels and thought: that would make a nice shooter name. Smiley

FWIW there is a game called Bullet Witch:

http://en.wikipedia.org/wiki/Bullet_Witch

弾幕 ☆ @mahonnaiseblog
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Get high quality music tracks 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 (59 views)
2013-05-17 21:29:12

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

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

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

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

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

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

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

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

UnluckyDevil (174 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.092 seconds with 20 queries.