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 (407)
games submitted by our members
Games in WIP (293)
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  
  Reset 2D Transformation?  (Read 1209 times)
0 Members and 1 Guest are viewing this topic.
Offline gbeebe

Senior Member


Medals: 5
Projects: 1



« Posted 2011-11-29 22:15:19 »

If I do this:
1  
2  
g.translate(x, y);
g.rotate(a);

Then draw some images, the only way I know to undo/reset the transformations is to do the same thing in reverse with negative values.
1  
2  
g.rotate(-a);
g.translate(-x, -y);

Every once in a while images, that appear after I undo the transformations, that are not meant to be rotated, will flicker at an angle and with an offset.  This leads me to believe that just doing a negative reverse isn't working properly.  Most of the time it's fine, but it randomly happens a frame here and there.

So is there a (more) proper way to reset 2d transformations?

Offline R.D.

Senior Member


Medals: 2
Projects: 1


"For the last time, Hats ARE Awesome"


« Reply #1 - Posted 2011-11-29 22:16:20 »

You talking about Slick2D I guess? If so, you can push the Transform and pop it too. you can also reset the transform via g.resetTransform(); Smiley

Mr. Hat I
- RadicalFish Engine - Ideas, Bugs? Open an Issue ticket!
Offline gbeebe

Senior Member


Medals: 5
Projects: 1



« Reply #2 - Posted 2011-11-29 22:20:29 »

No, just Graphics2D.
Games published by our own members! Check 'em out!
Try the Free Demo of Revenge of the Titans
Online Riven
« League of Dukes »

JGO Overlord


Medals: 438
Projects: 4


Hand over your head.


« Reply #3 - Posted 2011-11-29 22:29:07 »

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
private LinkedList<Graphics> stack = new LinkedList<Graphics>();

public Graphics push(Graphics g) {
   this.stack.addFirst(g); // save it for later
  return g.create(); // copies the Graphic object
}

public Graphics pop() {
   return this.stack.removeFirst(); // restore it
}


1  
2  
3  
4  
5  
6  
7  
public void paint(Graphics g) {
   ...
   g = this.push(g);
   ...
   g = this.pop();
   ...
}

Hi, appreciate more people! Σ ♥ = ¾
Learn how to award medals... and work your way up the social rankings
Projects: Revenge of the Titans, Titan Attacks, Droid Assault, and Ultratron
Offline SimonH
« Reply #4 - Posted 2011-11-29 22:35:22 »

You can also do;
1  
2  
3  
4  
5  
6  
7  
8  
9  
public void paint(Graphics g)
{
    Graphics2D g2d=(Graphics2D)g;
    AffineTransform oldTransform=g2d.getTransform();

   ...

   g2d.setTransform(oldTransform);
}

Heroes' Keep is in development.
Meanwhile try Bloodridge
Online theagentd
« Reply #5 - Posted 2011-11-30 15:20:04 »

The transformations are saved in the current AffineTransform of the Graphics object, so like SimonH said you can just get a copy of it and set it later.

Myomyomyo.
Offline gbeebe

Senior Member


Medals: 5
Projects: 1



« Reply #6 - Posted 2011-12-01 06:21:01 »

@SimonH, Thanks.  I haven't seen the glitch since I applied your suggestion.
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!
 
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars and Titan!

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 (98 views)
2013-05-17 21:29:12

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

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

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

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

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

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

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

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

UnluckyDevil (202 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.099 seconds with 21 queries.