yego.me
💡 Stop wasting time. Read Youtube instead of watch. Download Chrome Extension

Java GUI Lesson 11 | Moving a Graphic


3m read
·Nov 3, 2024

Processing might take a few minutes. Refresh later.

Hey, this is Mac Heads 101. My name is Jake, and welcome to your 11th Java GUI tutorial. Now, I know I said in this tutorial I'll be talking about curves and gradient paints and stuff, but I think I'm gonna save that for a couple tutorials down the line because what I want to do now is, in this tutorial and the next few, talk about making graphics move, making them ease to a stop, simulating gravity, collision detection, making them move with the keys, with the mouse, you can drag them, stuff like that. Then I'll come back to lines and gradient paints and things.

So, how we're gonna be doing this is, if you remember in our last tutorial, when we drew an oval, we set x and y coordinates of its top left corner to position it. Now, what we're going to be doing is we're going to be setting those x and y coordinates as variables that are gonna keep changing with the timer.

So, first things first, we have to make a timer: Timer timer = new Timer(5, this), and right now, there's no this because we have not implemented the action listener. All right, so now we need to make some doubles: double x, y, velocityX, velocityY. Just val X, del Y. X and y are gonna be the X&Y location; velocity X and velocity Y are going to be the velocities of each of these and what's going to be added each time.

So, right now, I'll just set these equal initially to zero so it has someone to draw it, and then velocity Y will equal 2, equal to velocity Y. There's a little too. So now what we want to do is make our public void paintComponent(Graphics g). Super paint component, and I went over all of this and lacet Orioles. So yeah, and the same thing we're gonna do is make the graphics 2D.

So now we're gonna make our Ellipse2D circle = new Ellipse2D.Double(x, y, 40, 40). There's two. Yeah, new Ellipse2D that's Apple. Okay, so now we've set its X&Y coordinates, and in here, I'm just gonna start the timer and also fill the circle. So that's drawing the script.

Now we have less to do is public void paintComponent. I mean, what am I talking about? Paint upon. I just made that action performed for the action listener, and it takes the action events e. Okay, so what we have to do in here is the two things I said: one, which is change the x and y coordinates, and two, which is call this method because right now it drew it at 0, 0, and no matter how much I change X and y, it's not gonna move unless I call this method, and it draws it at the new location.

In order to clear the whole thing and then draw it, it's really easy. You just do this: there's a built-in method repaint(). That's all you have to do. So, every 5 milliseconds, it's going to repaint, and all we have to do now is change the x and y coordinates: x += velocityX and y += velocityY. Plus equals just means x equals x plus velocity X.

So what's going to happen is we drew it at x and y, and every five milliseconds, because this timer, x and y are getting increased by 2, and then it's gonna redraw it at the new location. So seems perfect, but there is actually a slight problem that you'll see when I run this.

So, and actually got to do this whole thing: second s = new second(), and then we make a JFrame f. f.setVisible(true), through the set size. I'll make it 600 by 400. All right, and I'll just set title title to moving. All I said. Now, I'm gonna run this, and you'll see what the problem is. There you go; it moved, but it moved off screen because you can set these X&Y coordinates to negative 3, or if this is 600, I can set it to 700. You can actually set the X&Y coordinates to locations that are off-screen.

So here's how you have to keep from off-screen. Every time we call this, we have to put in a little check: if x < 0 or x > 560, and the reason I did 560 instead of 600 is because, if you remember, it's the top-left corner, which means from the top-left corner to the edge, there's still 40 in the way. Um, that's the ball. So if I subtract 40, it will make it so it stops it at 4 in, and it stops the...

I should explain this. Basically, you have the ba...

More Articles

View All
Welcome to the (Breakfast) Club | Generation X
John Hughes was, you know, our prophet. Even though there are any spaceships and Wookiees, I’m part of the reason I do what I do today. It’s because John made those movies: Pretty in Pink, Sixteen Candles, The Breakfast Club. They have a lot of the pleasu…
Aliens under the Ice – Life on Rogue Planets
Rogue planets are planets that travel through the universe alone. They inhabit the dark and vast space between the stars. Drifting alone through eternal darkness, no light warms their surfaces, and they’re exposed to the freezing cold of outer space. They…
Identifying tenths on a number line | Math | 4th grade | Khan Academy
Where is the point on the number line? Well, here it is; here’s the point! But I’m guessing that they’re asking not literally just to find it and look at it, but what number is this point graphed at? Where is this on the number line? So, one thing we kno…
The Billion Ant Mega Colony and the Biggest War on Earth
In nearly every corner of the earth, ants wage war against each other. Their weapons are what nature gave them. Some have strong armor, deathly stingers, or sharp mandibles. And then there’s this tiny and not very impressive ant, but it rules the biggest …
Facebook Fraud
Have you heard of Virtual Bagel? Their Facebook page has over 4,000 likes. They use the page to promote their brilliant business model: “we send you bagels via the Internet – just download and enjoy.” It sounds like a joke, and it is, sort of. This page w…
Dependent & independent variables | 6th grade | Khan Academy
Let’s say that you love to eat apples, and you are going to buy apples. So, A is the number of apples. But you also have a budget, so you have to care about cost. Let’s say C is equal to the total cost, and let’s say that the price of an apple is two doll…