Author Topic: Switching Player Sprites  (Read 8653 times)

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Switching Player Sprites
« on: 2005-04-26, 06:04:12 PM »
OK, here's a tricky one:

I created a sprite that follows the left wall.  (It's the player sprite).

I created a special function that switches the sprite to an identical one that follows the right wall.

Activating the function does not make the sprite go in the opposite direction, or find another wall to follow.  I'm not using the "switch "controlled by"" flag.  Anybody know why it doesn't work?  'Cuz I sure don't.
Edward Dassmesser

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Switching Player Sprites
« Reply #1 on: 2005-04-27, 06:15:54 AM »
Uh oh... looks like time for stump the experts.  I will have to look into this in more detail when I have time.  Remind me if I don't reply before the weekend.

billybob884

  • Contributor
  • Fanatic
  • **
  • Posts: 355
    • AOL Instant Messenger - billybob884
    • View Profile
Switching Player Sprites
« Reply #2 on: 2005-04-27, 06:20:16 AM »
what happens, the player just stops when the function is activated? ...maybe the player has to be touching the right side of a wall to continue moving, like be surrounded by the walls

Code: [Select]

| |
| |
| |
| |
| |
|X|
| |
| |


just a suggestion to try
"In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move." :: Hitchhiker's Guide to the Galaxy

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Switching Player Sprites
« Reply #3 on: 2005-04-27, 02:12:37 PM »
What happens is, the player is moving along, moving along, and all of a sudden, when the function activates.....it keeps moving along, as if the function did not activate (I know it did, because I changed it to something else, and it did work).

Here's the project, if anybody wants to check my handy-work.
http://www.beardedchild.com/files/FollowWall.ZIP
Edward Dassmesser

billybob884

  • Contributor
  • Fanatic
  • **
  • Posts: 355
    • AOL Instant Messenger - billybob884
    • View Profile
Switching Player Sprites
« Reply #4 on: 2005-04-27, 08:32:19 PM »
hmmm, i downloaded it and took a look, but i couldnt figure it out... i'm probably not hte best person to be asking though, ive never used the follow wall setting before. sorry :?
"In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move." :: Hitchhiker's Guide to the Galaxy

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Switching Player Sprites
« Reply #5 on: 2005-04-28, 03:26:42 AM »
I have just a couple minutes to look at this this morning (I'm going to work at 4:30 am here, but only today.  ugh, too much to do.)  Anyway, first I noticed the functions weren't set up to activate at all.  They were not on the map and they were not global, so I'm not sure what was supposed to activate them.  I made them global and I made one of them (which didn't have any activation parameters) activate on the press of the right arrow.  When I did this I observed that the sprite didn't immediately switch directions, but next time it got to a place where it had to turn, it did.  My guess (without further investigation) is that a follow wall sprite will continue along it's current path until it hits a wall that it can follow.  When it's following a left wall and should be following a right wall, it won't turn until it hits a wall in front of it or to its right or behind it.

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Switching Player Sprites
« Reply #6 on: 2005-04-28, 09:06:53 AM »
Oops.  I uploaded the wrong version, I guess.  They were set to activate on the press of the left/right keys, and they were global.  I guess I didn't save it after that.

But I hadn't noticed any turning around action when I tried it.  I'll have to try again later.  (4:30 AM!?  Sheesh!)
Edward Dassmesser

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Switching Player Sprites
« Reply #7 on: 2005-04-29, 05:41:26 AM »
Being allowed to turn around only at concave corners, and jump to another wall only at convex corners, and being forced to always keep moving could make for an interesting game, though.  You'd have to be careful of those long empty walls if there was anything dangerous on them -- turn around and watch them for a while before you go accross them to make sure they're safe, and time your crossing well.  Kinda like being in outer space.  After you've pushed off, you're helpless until you hit something else.  That would be another cool game idea.  Every time you hit a wall the player can aim and shoot himself off the wall in a particular direction, but is then inert (can't control his movement) until he hits another wall (which is a feature built into gamedev -- you can easily detect when you hit a wall).  It'd probably require some scripting, but relatively simple.

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Switching Player Sprites
« Reply #8 on: 2005-04-29, 08:09:58 AM »
Interesting gameplay style.  Sounds like something that hasn't been done before.  But then, coming up with a game to go around it, that's the hard part. :)
Edward Dassmesser