Mouse Movement

Talk about making games.

Postby IPete2 » Sat Feb 05, 2005 12:38 pm

I think the code you need is located here, under 'Click and Move Actor'

http://www.artsystems.com.au/game%20editor/


The code allows the user to click on the screen. The player then slowly moves to that positions.

Great little code snippet Jazz! Thanks for sharing.


IPete2.
IPete2
 
Posts: 43
Joined: Sun Jan 30, 2005 4:06 pm
Score: 0 Give a positive score

Postby Fenrir » Sat Feb 05, 2005 1:17 pm

yes I have tryed to read that .ged, but with no luck. GE frezzes and I have to do a ctrl-Alt-Del. :?
Fenrir
 
Posts: 34
Joined: Thu Feb 03, 2005 3:42 pm
Location: Sweden
Score: 0 Give a positive score

Postby IPete2 » Sat Feb 05, 2005 2:08 pm

Fenrir,

Have you the most recent download of GE? I am using the demo version 1.2.7 - downloaded this week from the demo download part of the website

I have tried it and it seems fine.

OKAY here is the process - follow this:

(1) Prefs set for 400*300.

(2) Create Actor called "Main_actor" - leave the pacman in the middle of the view

(3) Create a filled region, call it "click_me" and move it off top right of screen. Make sure the size of this Filled Region is as big as the view actor - Attach this script using "Add" - "Create Actor" - "Add Action" - "Script Editor" :

x = -(view.width/2);
y = -(view.height/2);


(3.5) You need to add the above code to the "View" Actor too.


(4) Then from the Actor Control Panel add another Event - this one "Mouse Button Down" - select the left mouse button and "Add Action" - "Script Editor". Now paste this in to the script.

MoveTo("Main_actor", xmouse - (view.width/2), ymouse - (view.height/2), 10);


Okay you should be set to go. Game Mode and clik on the screen.


I hope this works - let me know - all I have done is quote it from Jazz-E-s code.

IPete2.
IPete2
 
Posts: 43
Joined: Sun Jan 30, 2005 4:06 pm
Score: 0 Give a positive score

Postby Fenrir » Sat Feb 05, 2005 2:30 pm

Thanks, it works. :P

Now I just need to make the player to show the right animations while moving in the specific directions (preferably all 8 directions). You wouldn't happen to know this iPete, or would ya? :wink:
Fenrir
 
Posts: 34
Joined: Thu Feb 03, 2005 3:42 pm
Location: Sweden
Score: 0 Give a positive score

Postby IPete2 » Sat Feb 05, 2005 2:35 pm

Hi,

Hooray!

There is an example called "Beekeeper" on Jazz_e_Bobs list - can you try looking through that code?

IPete2.


PS

WHooa! I just looked at the Beekeeper code, it is quite a bit more involved. Jazz is using variables to decide which direction and animation frame he is on.
IPete2
 
Posts: 43
Joined: Sun Jan 30, 2005 4:06 pm
Score: 0 Give a positive score

Postby Fenrir » Sat Feb 05, 2005 2:57 pm

Well... :oops:

This make as much sense to me as a falukorv would to a caveman. Though I try to understand and to be better to understand, I'm not a programmer. I don't know what all of these functions does.
Fenrir
 
Posts: 34
Joined: Thu Feb 03, 2005 3:42 pm
Location: Sweden
Score: 0 Give a positive score

Postby IPete2 » Sat Feb 05, 2005 3:02 pm

Hey Dude!

Don't give up - I have been programming for years and although I can see the kind of thing Jazz is doing, I don't know GE well enough to just go - "Ah yes that's how I'll do that then!" - even when I look at the code side, I think hmm yes well I'm not there yet!

GE is great for devising some quick and easy events from the menu system. I am sure it is quite powerful underneath, but programming is about solving problems, to solve them you need to know the tools you have in your power to use.

I am finding GE a little bit of a struggle as I don't know it well and I think slightly differently from the menu system.

GE is like C with access to a fast interface for building ideas quickly (unlike C).

Keep at it - persevere and it will fall into place. Makslane has done an excellent job here, bringint the power to code for three platforms in one language!


IPete2.
IPete2
 
Posts: 43
Joined: Sun Jan 30, 2005 4:06 pm
Score: 0 Give a positive score

Postby Fenrir » Sat Feb 05, 2005 3:34 pm

It would be great to have a tutorial, covering the hole procedure!
Fenrir
 
Posts: 34
Joined: Thu Feb 03, 2005 3:42 pm
Location: Sweden
Score: 0 Give a positive score

Postby Just4Fun » Sat Feb 05, 2005 5:36 pm

Fenrir:
Like you, I don't consider myself any sort of "super dupper" programmer. I am a much more a right brained artist and writer type! So, the way that I look at this, is that if I can learn to use GE, anybody can. :lol:
GE actually does a great job of holding your hand while you learn to script in C! If you get stuck, just ask here and someone will usually be able to give you an answer. If no one can or does answer you, Makslane will! He is definately a world class talent in programming as well as in many technical areas.
One thing I have found, is that learning any authoring/programming system takes some real work so try not to get disheartened. . .
Make sure to study the documents, tutorials, and the demos. They are very helpful. There are also some good introductory C language books that you can buy or possibly check out of the library.
It is good to have you here. Your questions are helping me to learn more about GE too. So keep asking... :D
I've learned that I still have a lot to learn.

** Makslane == Genious **
Just4Fun
 
Posts: 524
Joined: Tue Jul 01, 2003 5:19 am
Location: USA: Washington State; West Coast
Score: 6 Give a positive score

Postby Fenrir » Sat Feb 05, 2005 5:59 pm

Just4Fun:

I'm not about to quit, but sometimes you get overwhelmed by all the information you have to process!

Den som ger sig suger! As my father use to say. :D
Fenrir
 
Posts: 34
Joined: Thu Feb 03, 2005 3:42 pm
Location: Sweden
Score: 0 Give a positive score

Postby Just4Fun » Sat Feb 05, 2005 6:12 pm

Fenrir:

Overwhelmed is a word that I relate to very well when it is used in reference to GE. One thing that has helped me (maybe it won't help you, but I'll mention it--just in case), is to concentrate on learning one small piece of GE first. For example, I still haven't learned everything about how to use each actor so sometimes I just play around with an actor and try to understand more of how the events and actions work on that actor. Then, I look at the docs and try to apply some script to the actor to see how the script works.

I agree though, I also wish for a more complete explanation of some of the script functions. However, slowly, I am beginning to understand some of the script functions.

I think you will learn scripting much faster than I have though. I'm very dense when it comes to programming... :oops:
I've learned that I still have a lot to learn.

** Makslane == Genious **
Just4Fun
 
Posts: 524
Joined: Tue Jul 01, 2003 5:19 am
Location: USA: Washington State; West Coast
Score: 6 Give a positive score

Postby ingsan » Sun Feb 06, 2005 5:21 pm

Hey Fenrir,
Is this what you want to do ?
http://www.pakingprod.com/MlleLafortune ... ndMove.exe
User avatar
ingsan
 
Posts: 580
Joined: Mon Nov 17, 2003 4:02 pm
Location: Maurician LADY in FRANCE
Score: 6 Give a positive score

dude!

Postby willg101 » Sun Feb 06, 2005 5:28 pm

Dude! How did you program that click and move??

If you have the ged file for that, I'd use it!
Last edited by willg101 on Tue Feb 08, 2005 1:34 am, edited 1 time in total.
http://www.wish-games.com
Old betas now available!!
User avatar
willg101
 
Posts: 473
Joined: Thu Dec 16, 2004 12:08 am
Location: West Michigan
Score: 5 Give a positive score

Postby IPete2 » Sun Feb 06, 2005 5:35 pm

Will

Check out the top post on this page, I have explained how to do it using the code from Jazz_e_bobs demo.

IPete2.
IPete2
 
Posts: 43
Joined: Sun Jan 30, 2005 4:06 pm
Score: 0 Give a positive score

Postby ingsan » Sun Feb 06, 2005 5:37 pm

Jazz helped me understand HOW to ponder on the problem. And I thank him. But I did not use his method.
User avatar
ingsan
 
Posts: 580
Joined: Mon Nov 17, 2003 4:02 pm
Location: Maurician LADY in FRANCE
Score: 6 Give a positive score

PreviousNext

Return to Game Development

Who is online

Users browsing this forum: No registered users and 1 guest