Scrolling Game Development Kit Forum

SGDK Version 1 => Script => Topic started by: billybob884 on 2005-08-01, 03:09:06 PM

Title: forced scrolling modification
Post by: billybob884 on 2005-08-01, 03:09:06 PM
Hi, just wanted to know if it would be possible to modify the forced scrolling section of this script so that it would still scroll right on the map its currently set to (2-4BonusLevel), but scroll up for another map (4-2SpaceFlight). (Also, it would need to start at the bottom of the map [heh, obviously]; so something extra might need to be added in to tell it to start there). Here's the script I have right now, it does the forced scrolling, the horizontal window split (for 2 player), and a jump button:

Code: [Select]
' ======== INITIAL STARTUP SCRIPT (Number 0) =========

Sub Player_OnPlayInit()
HostObj.StartScript=1
End Sub

HostObj.SinkObjectEvents ProjectObj.GamePlayer, "Player"
HostObj.ConnectEventsNow()
ProjectObj.GamePlayer.Play 16



Option Explicit

Dim XOff, YOff

Dim P2OffsetX, P2OffsetY
Dim P2Actions, intSprTwo

Const nSprWidth = 41
Const nSprHeight = 75

Sub Display_KeyDown(KeyCode, Shift)
' E=69, S=83, D=68, F=70
If KeyCode = 69 Then P2Actions = P2Actions Or ACTION_UP
If KeyCode = 83 Then P2Actions = P2Actions Or ACTION_LEFT
If KeyCode = 68 Then P2Actions = P2Actions Or ACTION_DOWN
If KeyCode = 70 Then P2Actions = P2Actions Or ACTION_RIGHT
End Sub

Sub Display_KeyUp(KeyCode, Shift)
If KeyCode = 69 Then P2Actions = P2Actions And Not ACTION_UP
If KeyCode = 83 Then P2Actions = P2Actions And Not ACTION_LEFT
If KeyCode = 68 Then P2Actions = P2Actions And Not ACTION_DOWN
If KeyCode = 70 Then P2Actions = P2Actions And Not ACTION_RIGHT
End Sub

Sub Player_OnAfterMoveSprites()
  Dim oMap, oPlayer, oLayer, nLyrWid, nLyrHgt, i
  Set oPlayer = ProjectObj.GamePlayer
  Set oMap = oPlayer.rMap


'-----Two-Player-Stuff-----
'If ProjectObj.GamePlayer.rMap.name = "0-4LevelSelect" or ProjectObj.GamePlayer.rMap.name = "map2" or ProjectObj.GamePlayer.rMap.name = "map3" or ProjectObj.GamePlayer.rMap.name = "map4" then

  If ProjectObj.GamePlayer.rMap.name <> "0-4LevelSelect" then
      intSprTwo = -1
oPlayer.ScrollMarginY = 185
  else
Set oLayer = oMap.MapLayer(1)
      If intSprTwo < 0 then
          For i = 0 to oLayer.SpriteCount - 1
              If oLayer.Sprite(i).rDef.Name = "Player2" then intSprTwo = i
          next
      End If
      With oLayer.Sprite(intSprTwo)
oPlayer.ScrollMarginY = 62
           If .ProcessAction(P2Actions) Then
              .CurState = (.CurState Mod (.rDef.Template.StateCount \ 2)) _
                        + .rDef.Template.StateCount \ 2
              .CurFrame = .CurFrame Mod .rDef.StateFrameCount(.CurState)
           Else
              .CurState = (.CurState Mod (.rDef.Template.StateCount \ 2))
           End If

          oMap.ViewTop = 240
          If P2OffsetX + oPlayer.ScrollMarginX > .X Then
              P2OffsetX = .X - oPlayer.ScrollMarginX
          End If
          If P2OffsetX + oMap.ViewWidth - oPlayer.ScrollMarginX < .X + nSprWidth Then
              P2OffsetX = .X - oMap.ViewWidth + oPlayer.ScrollMarginX + nSprWidth
          End If
          If P2OffsetY + oPlayer.ScrollMarginY > .Y Then
              P2OffsetY = .Y - oPlayer.ScrollMarginY
          End If
          If P2OffsetY + oMap.ViewHeight - oPlayer.ScrollMarginY < .Y + nSprHeight Then
              P2OffsetY = .Y - oMap.ViewHeight + oPlayer.ScrollMarginY + nSprHeight
          End If

          If P2OffsetX < 0 Then P2OffsetX = 0
          If P2OffsetY < 0 Then P2OffsetY = 0
           nLyrWid = oLayer.Columns * 32
           nLyrHgt = oLayer.Rows * 32
          If P2OffsetX > nLyrWid - oMap.ViewWidth Then P2OffsetX = nLyrWid - oMap.ViewWidth
          If P2OffsetY > nLyrHgt - oMap.ViewHeight Then P2OffsetY = nLyrHgt - oMap.ViewHeight
          oMap.Draw P2OffsetX, P2OffsetY, False
          oMap.ViewTop = 0
      End With
  End If

'-----Automatic-Scrolling-Stuff-----
  If ProjectObj.GamePlayer.rMap.name = "2-4BonusLevel" then
      XOff = XOff + 1
      With ProjectObj.GamePlayer
          if .PlayerSprite.X <= XOff then
              if .PlayerSprite.DX < 0 then .PlayerSprite.DX = 1
              .PlayerSprite.DX = .PlayerSprite.rDef.Template.MoveSpeed
              if .PlayerSprite.X < XOff - .PlayerSprite.Width / 2 then
                  XOff = 1
              End if
          end if
          .rMap.Draw XOff, YOff
      End With
  End If

End Sub

Sub Player_OnControllerMove(OldActions, NewActions)

'-----Jumping-Player-----
  With ProjectObj.GamePlayer.PlayerSprite
      If (Not OldActions) And NewActions And ACTION_BUTTON2 Then
          If (.rDef.SolidTest(.X, .Y + .Height) Or .rDef.SolidTest(.X + .Width - 1, .Y + .Height)) Or (Not .pRideOnRef Is Nothing) Then
              .DY = - .rDef.Template.JumpHeight
          End If
      End If
  End With

End Sub

intSprTwo = -1
HostObj.SinkObjectEvents ProjectObj.GamePlayer, "Player"
HostObj.SinkObjectEvents CurrentDisplay, "Display"
HostObj.ConnectEventsNow()
Title: Scrolling
Post by: bluemonkmn on 2005-08-01, 04:32:09 PM
If I understand that script correctly, it's redrawing the map over the top of the already drawn map on every frame just to show the custom scroll position.  Is that right?  That seems rather inefficient.  Rather than re-drawing the map, couldn't you just change the MapScrollX and MapScrollY properties of the player object?  You could also use those properties to retrieve the existing scroll position.  That way if, for example, you start the player at the bottom of the map, you can just scroll up from the existing position rather than having to calculate the proper offset for the starting position.
Title: forced scrolling modification
Post by: billybob884 on 2005-08-01, 06:01:42 PM
.....
 :?

mmm  sorry, not sure what your saying. heh, i didnt write the script, it was a combined effort on your and durnurd's part..
Title: forced scrolling modification
Post by: durnurd on 2005-08-01, 06:04:09 PM
Well, excuse me. ;D

Actually, I wrote the automatic scrolling script a while ago, and didn't know of any other way to scroll the map.

The fact is, this script was not written with modifiability entirely in mind.  If I were to rewrite this script, I would change quite a bit of stuff so that it could work in more general terms (scrolling in any direction, scrolling propperly using MapScrollX and MapScrollY).  Using this same script, it would take a bit of changing to allow scrolling up as well.
Title: forced scrolling modification
Post by: billybob884 on 2005-08-01, 06:30:39 PM
hmmm, so what if i copy and paste it so that its not 1 section trying to do 2, or would that not help?

---edit---
ok, got up the nerve to try it and this is what i made:
Code: [Select]
'Automatic Scrolling Stuff 2
  If ProjectObj.GamePlayer.rMap.name = "4-2SpaceFlight" then
      YOff = YOff - 1
      With ProjectObj.GamePlayer
          if .PlayerSprite.Y <= YOff then
              if .PlayerSprite.DY < 0 then .PlayerSprite.DY = 1
              .PlayerSprite.DY = .PlayerSprite.rDef.Template.MoveSpeed
              if .PlayerSprite.Y < YOff - .PlayerSprite.Height / 2 then
                  YOff = 1
              End if
          end if
          .rMap.Draw XOff, YOff
      End With
  End If


i put it between the 1st auto scroll and hte end sub right below it. it worked, but only kinda. its drawing the map over hte inventory stuff at the top, so i need a wat ot tell it to draw it 32 pixils lower, and its not starting at the bottom of the map, im not really sure where its starting (i think right at the top).

---edit-2---
ok, fixed the inventory problem, i forgot to set the top map display to 32 (in the map editor). ok, so that just leaves the problem that its starting right at the top of the map (yes, im sure it is now b/c i put a few tiles in the map to see ifhtats what was happening.
Title: forced scrolling modification
Post by: durnurd on 2005-08-01, 09:51:06 PM
Well, that's.... one way to do it, I suppose.

You'll need a line in there to tell it that YOff doesn't start at 0 (which it does right now) but rather, at
Code: [Select]
YOff = ProjectObj.GamePlayer.rMap.Height - ProjectObj.GamePlayer.rMap.ViewHeight

Put this in the same relative place that the line XOff = 1 is at
Title: forced scrolling modification
Post by: durnurd on 2005-08-01, 09:56:23 PM
Oh, and since you are going up instead of down, you'll want to change the place that says

Code: [Select]
if .PlayerSprite.DY < 0 then .PlayerSprite.DY = 1
.PlayerSprite.DY = .PlayerSprite.rDef.Template.MoveSpeed
if .PlayerSprite.Y < YOff - .PlayerSprite.Height / 2 then


Code: [Select]
if .PlayerSprite.DY > 0 then .PlayerSprite.DY = -1
.PlayerSprite.DY = -.PlayerSprite.rDef.Template.MoveSpeed
if .PlayerSprite.Y > YOff + .rMap.ViewHeight - .PlayerSprite.Height / 2 then
Title: forced scrolling modification
Post by: billybob884 on 2005-08-01, 10:00:31 PM
ok so it should look like this then?

Code: [Select]
'Automatic Scrolling Stuff 2
  If ProjectObj.GamePlayer.rMap.name = "4-2SpaceFlight" then
      YOff = YOff - 1
      With ProjectObj.GamePlayer
          if .PlayerSprite.Y <= YOff then
              if .PlayerSprite.DY > 0 then .PlayerSprite.DY = -1
              .PlayerSprite.DY = -.PlayerSprite.rDef.Template.MoveSpeed
              if .PlayerSprite.Y > YOff + .rMap.ViewHeight - .PlayerSprite.Height / 2 then
                  YOff = ProjectObj.GamePlayer.rMap.Height - ProjectObj.GamePlayer.rMap.ViewHeight 'YOff = 1
              End if
          end if
          .rMap.Draw XOff, YOff
      End With
  End If


b/c that didnt change anything

---edit---
how about if i just use an actual number, like
YOff = 15000 (cuz thats hte map height)

hmm that didnt change anything either...
Title: forced scrolling modification
Post by: durnurd on 2005-08-01, 10:07:14 PM
Ah, XOff doesn't appear to be initialized anywhere (it should be, but oh well, the errors of my way come back to haunt me)

A quick fix would be to put this just after Sub Player_OnAfterMoveSprites()
Code: [Select]

if ProjectObj.GamePlayer.rMap.Name = "4-2SpaceFlight" and YOff = 0 then YOff = ProjectObj.GamePlayer.rMap.Height - ProjectObj.GamePlayer.rMap.ViewHeight
Title: forced scrolling modification
Post by: billybob884 on 2005-08-01, 10:14:17 PM
Error playing map: Display must be open to flip
[OK]

stopped at line 29 on character 73:
object doesnt support this property or method: 'ProjectObj.GamePlayer.rMap.Height'
[OK]

line 29 is hte line you just told me to add (if ProjectObj.GamePlayer.rMap.Name = "4-2SpaceFlight" and YOff = 0 then YOff = ect....)

character 73 is the first Y of the part
YOff = ProjectObj.GamePlayer.rMap.Height - Project....


i fixed it by typing in the map's height (15000) and now it works. the only problem is that if i go off the top of hte map (ro even start to) i get stuck off screen and cant get back on, not even by waiting for the screen to scroll back over me
so what ill have to do is have a sprite the width of hte screen but like 2 pixils high just off screen, or maybe like 1 pixil on the screen, and have the player "bounce" off of it (using colisions), just like i did on the L2-4Bonus map.

Yay! It works!
in hindsight ill have to make a note to change that line if/when i change the map size (15000 was just a random # i typed in for testing). ahh well, it works, so im not gonna f**k with it  ;) .
Title: forced scrolling modification
Post by: bluemonkmn on 2005-08-02, 06:41:48 AM
I think you could eliminate this whole block of code since I doubt you're using it:
Code: [Select]
         if .PlayerSprite.Y <= YOff then
              if .PlayerSprite.DY < 0 then .PlayerSprite.DY = 1
              .PlayerSprite.DY = .PlayerSprite.rDef.Template.MoveSpeed
              if .PlayerSprite.Y < YOff - .PlayerSprite.Height / 2 then
                  YOff = 1
              End if
          end if

Another interesting thing you could do is just use that sprite you made (for the player you bounce off of) -- use it to control the scrolling.  You could make a similar sprite on any map that you want to auto-scroll and it would be very simple to do all the scrolling then.

Bah, now look what you made me do -- I'm going to have to go try it myself and see how cool that is ;).

Whew -- OK, try this little project: http://gamedev.comdel.net/files/AutoScroller.zip

It uses any sprite whose name begins with "Scroller" to control the automatic scrolling on a map.  You don't even need to define a collision definition between the sprite and the player to keep then on the screen (I included better scripting ways of doing that).  So you should ignore the fact that the sprite is visible and 640 pixels wide actually :) (It can be invisible and small).  The script will "bounce" the player back onto the screen if he gets too close to the edge (within the scrolling margin, whatever you defined that to be).

Here's a copy of the script code for your convenience:
Code: [Select]
Dim ScrollerSprite

Function FindScrollerSprite()
   With ProjectObj.GamePlayer.PlayerSprite.rDef.rLayer
      For I = 0 To .SpriteCount - 1
         If Left(.Sprite(I).rDef.Name, 8) = "Scroller" Then
            Set FindScrollerSprite = .Sprite(I)
            Exit Function
         End If
      Next
   End With
End Function

Sub Player_OnAfterMoveSprites()

   If IsEmpty(ScrollerSprite) Then
      Set ScrollerSprite = FindScrollerSprite
   End If

   If Not ScrollerSprite.rDef.rLayer.pMap Is ProjectObj.GamePlayer.rMap Then
      Set ScrollerSprite = FindScrollerSprite
   End If


   With ProjectObj.GamePlayer
      .MapScrollX = ScrollerSprite.X
      .MapScrollY = ScrollerSprite.Y
      If .PlayerSprite.Y > .MapScrollY + .rMap.ViewHeight - .ScrollMarginY - .PlayerSprite.Height Then
         .PlayerSprite.DY = -.PlayerSprite.rDef.Template.MoveSpeed
      ElseIf .PlayerSprite.Y < .MapScrollY + .ScrollMarginY Then
         .PlayerSprite.DY = .PlayerSprite.rDef.Template.MoveSpeed
      End If

      If .PlayerSprite.X > .MapScrollX + .rMap.ViewWidth - .ScrollMarginX - .PlayerSprite.Width Then
         .PlayerSprite.DX = -.PlayerSprite.rDef.Template.MoveSpeed
      ElseIf .PlayerSprite.X < .MapScrollX + .ScrollMarginX Then
         .PlayerSprite.DX = .PlayerSprite.rDef.Template.MoveSpeed
      End If
   End With

End Sub

HostObj.SinkObjectEvents ProjectObj.GamePlayer, "Player"
HostObj.ConnectEventsNow()
ProjectObj.GamePlayer.Play 16
Title: forced scrolling modification
Post by: billybob884 on 2005-08-02, 11:48:17 AM
one mroe quick question; in this level, i'm using a different sprite that's a bit larger than the regular one, so would i just add something like

Code: [Select]
 If ProjectObj.GamePlayer.rMap.name = "4-2SpaceFlight" then
oPlayer.ScrollMarginX = 75
oPlayer.ScrollMarginY = 100
Title: forced scrolling modification
Post by: bluemonkmn on 2005-08-03, 05:43:07 AM
Yeah, that syntax should work, although I'm a bit suspicious about your numbers -- why your x scroll margin would by smaller than your y scroll margin.  Are you sure you mean to allow the sprite to get within 75 pixels of the edge of the screen horizontally and within 100 pixels vertically?  75 seems like a pretty small horizontal scroll margin.

Also, on the maps where the auto-scrolling is going on, you probably want to set the scroll margin to zero unless you like the player bouncing off an invisible box that's smaller than the map display area.
Title: forced scrolling modification
Post by: billybob884 on 2005-08-03, 09:23:35 AM
heh yea, just ignor those numbers, i wasnt thinking when i wrote them in. thats the size of the player sprite, not the scroll margines i want  ::) .
it should actually be like 280x170 on a normal map. ill give that and 0x0 a try and see what looks better.

---edit---
hmmm, thats weird, both sets of scroll margines look exactly the same in the game. well, whatever works  :) . one other thing thats really weird. if hte player goes up and off the screen only just a slight bit then stops, he gets pulled completely off screen and stuck there. im gonna fix it with that "solid sprite" thing, i just figured id mention it.
Title: forced scrolling modification
Post by: bluemonkmn on 2005-08-03, 04:32:11 PM
It should not be possible for the player to move off the screen if the script was implemented correctly.  Since the script (the one I sent last) is only setting the scroll position properties and not overriding the scroll position (by re-drawing the map) any more, that should really be impossible (unless the sprite you're calling the player is not really the "player sprite").  The map is re-scrolled to put the player on the screen every frame before the map is drawn.  I think you'll want to figure out the correct way to fix it rather than using the sprite solution because you would need one sprite for each side of the screen.  Managing 4 sprites is probably going to be harder to get correct then fixing the script.  I think something's gone terribly wrong with your script if your player can leave the screen, and putting sprites there may not even fix it.

Also, aren't you suspicious that the script is not even running or working if it seemed to have no effect on the scroll margins?
Title: forced scrolling modification
Post by: billybob884 on 2005-08-03, 08:38:33 PM
well no, actually only 2 sprites, opne for top and bottom, the map is only the screens width
well, no im not really that curious, its not shaking anymore, and its working for my purposes, which is really all i care about ;) .
Title: forced scrolling modification
Post by: durnurd on 2005-08-03, 09:01:58 PM
Are you using the new script BlueMonk sent for scrolling, or still using the old one?  If you're still using the old one, that would explain your problems (probably the code that's supposed to push the player sprite if it touches the edge is instead pushing it the wrong direction, and scroll margins don't make a difference because it's drawing the map scrolled to the correct place over the old map)
Title: forced scrolling modification
Post by: bluemonkmn on 2005-08-04, 05:58:31 AM
Well only one sprite can be the player sprite so I wouldn't be surprised if the second sprite was being called a player and could get off the visible area of the map.
Title: forced scrolling modification
Post by: billybob884 on 2005-08-04, 09:40:01 AM
1, yes im using hte old script, and 2, theres only 1 sprite on the map right now
Title: forced scrolling modification
Post by: bluemonkmn on 2005-08-05, 05:53:51 AM
Well, if things don't work out for you, you might want to try switching to that new script.  It's so much cleaner, no disrespect to durnurd intended ;).
Title: forced scrolling modification
Post by: durnurd on 2005-08-05, 01:42:55 PM
Well, I would imagine that the guy who made the program could probably write a better add-on than I could (having not examined ways of scrolling before writing the script) :-).

Oh, BTW, I saw your tile on the floor in the Reif Center.  I don't know why I said that here, but it just came to mind.
Title: forced scrolling modification
Post by: billybob884 on 2005-08-14, 12:00:43 AM
Ok, I'm going to have to switch to your scrolling script for the 4-2 level, because, for whatever reason I'm still getting sucked off the map; it's just too, for lack of a better word, messy, to deal with. (I dont think I'll worry about the other horizontal-scrolling level, just because it's working great; I've never had any problems with the player going off screen or anything, (and partly becuase I'm lazy, I don't want to have to go back in and change a bunch of things when it already works fine :D ). So out of your script, which parts would I need to copy for the vertical-upwards scroll?

(also, as a small side request, is there any simple way to make the 'margines' around the screen's edge a little smaller? Like, so the player can go further before "hitting the border"? If not, no big deal, don't worry about it.)
Title: forced scrolling modification
Post by: bluemonkmn on 2005-08-14, 07:42:59 AM
OK, for reference, this is the new script I suggested:
Code: [Select]
Dim ScrollerSprite

Function FindScrollerSprite()
   With ProjectObj.GamePlayer.PlayerSprite.rDef.rLayer
      For I = 0 To .SpriteCount - 1
         If Left(.Sprite(I).rDef.Name, 8) = "Scroller" Then
            Set FindScrollerSprite = .Sprite(I)
            Exit Function
         End If
      Next
   End With
End Function

Sub Player_OnAfterMoveSprites()

   If IsEmpty(ScrollerSprite) Then
      Set ScrollerSprite = FindScrollerSprite
   End If

   If Not ScrollerSprite.rDef.rLayer.pMap Is ProjectObj.GamePlayer.rMap Then
      Set ScrollerSprite = FindScrollerSprite
   End If


   With ProjectObj.GamePlayer
      .MapScrollX = ScrollerSprite.X
      .MapScrollY = ScrollerSprite.Y
      If .PlayerSprite.Y > .MapScrollY + .rMap.ViewHeight - .ScrollMarginY - .PlayerSprite.Height Then
         .PlayerSprite.DY = -.PlayerSprite.rDef.Template.MoveSpeed
      ElseIf .PlayerSprite.Y < .MapScrollY + .ScrollMarginY Then
         .PlayerSprite.DY = .PlayerSprite.rDef.Template.MoveSpeed
      End If

      If .PlayerSprite.X > .MapScrollX + .rMap.ViewWidth - .ScrollMarginX - .PlayerSprite.Width Then
         .PlayerSprite.DX = -.PlayerSprite.rDef.Template.MoveSpeed
      ElseIf .PlayerSprite.X < .MapScrollX + .ScrollMarginX Then
         .PlayerSprite.DX = .PlayerSprite.rDef.Template.MoveSpeed
      End If
   End With

End Sub

HostObj.SinkObjectEvents ProjectObj.GamePlayer, "Player"
HostObj.ConnectEventsNow()
ProjectObj.GamePlayer.Play 16

There is no distinction between horizontal scrolling, vertical scrolling or diagonal scrolling.  The script simply auto-scrolls according to the current position of a sprite called "Scroller" (more specifically, the first sprite whose SpriteDef name begins with "Scroller" on the player's current layer).  That sprite can move along vertical path, horizontal path, diagonal path or any kind of path you want, and the scrolling will follow.  So you basically want the entire FindScrollerSprite function copied into your script, and you want all the contents of OnAfterMoveSprites to be in a part of your OnAfterMoveSprites function that handles processing of your auto-scrolling map(s).  Then remember to create a sprite called "Scroller" on the map(s) where you want to implement this kind of auto-scrolling.

The question of increasing the scroll margins gets interesting, but it's really quite simple to deal with.  It's interesting because The auto-scrolling levels should set it to zero if you want to allow the player to get right up next to the edge like auto-scrolling levels on most games.  But on other levels you probably want it to be different, and GameDev was only designed to have one scroll margin setting for the whole game (mental note -- fix that for SGDK2).  Anyway, setting the scroll margins in script is quite easy:
Code: [Select]
  With ProjectObj.GamePlayer
      .ScrollMarginX = 0
      .ScrollMarginY = 0
   End With

If you can detect when you are swithing maps (have your switch map function raise an event maybe) you could just set the scroll margins to sensible values based on which map you are switching to.
Title: forced scrolling modification
Post by: billybob884 on 2005-08-15, 11:03:36 PM
I'm sorry, but I've tried a few different things, and I can't for the life of me figure out how to merge these 2 scripts.
I've made a little progress, gotten some parts in:

Code: [Select]
' ======== INITIAL STARTUP SCRIPT (Number 0) =========

Sub Player_OnPlayInit()
HostObj.StartScript=1
End Sub

HostObj.SinkObjectEvents ProjectObj.GamePlayer, "Player"
HostObj.ConnectEventsNow()
ProjectObj.GamePlayer.Play 16



Option Explicit

Dim XOff, YOff
Dim P2OffsetX, P2OffsetY
Dim P2Actions, intSprTwo

Const nSprWidth = 41
Const nSprHeight = 75

Sub Display_KeyDown(KeyCode, Shift)
' E=69, S=83, D=68, F=70
If KeyCode = 69 Then P2Actions = P2Actions Or ACTION_UP
If KeyCode = 83 Then P2Actions = P2Actions Or ACTION_LEFT
If KeyCode = 68 Then P2Actions = P2Actions Or ACTION_DOWN
If KeyCode = 70 Then P2Actions = P2Actions Or ACTION_RIGHT
End Sub

Sub Display_KeyUp(KeyCode, Shift)
If KeyCode = 69 Then P2Actions = P2Actions And Not ACTION_UP
If KeyCode = 83 Then P2Actions = P2Actions And Not ACTION_LEFT
If KeyCode = 68 Then P2Actions = P2Actions And Not ACTION_DOWN
If KeyCode = 70 Then P2Actions = P2Actions And Not ACTION_RIGHT
End Sub

Sub Player_OnAfterMoveSprites()

if ProjectObj.GamePlayer.rMap.Name = "4-2SpaceFlight" and YOff = 0 then YOff = 15003 - ProjectObj.GamePlayer.rMap.ViewHeight 'ProjectObj.GamePlayer.rMap.HeightHeight

  Dim oMap, oPlayer, oLayer, nLyrWid, nLyrHgt, i
  Set oPlayer = ProjectObj.GamePlayer
  Set oMap = oPlayer.rMap


'Two Player Stuff
'If ProjectObj.GamePlayer.rMap.name = "0-4LevelSelect" or ProjectObj.GamePlayer.rMap.name = "map2" or ProjectObj.GamePlayer.rMap.name = "map3" or ProjectObj.GamePlayer.rMap.name = "map4" then

  If ProjectObj.GamePlayer.rMap.name <> "0-4LevelSelect" then
      intSprTwo = -1
oPlayer.ScrollMarginY = 185
  else
Set oLayer = oMap.MapLayer(1)
      If intSprTwo < 0 then
          For i = 0 to oLayer.SpriteCount - 1
              If oLayer.Sprite(i).rDef.Name = "Player2" then intSprTwo = i
          next
      End If
      With oLayer.Sprite(intSprTwo)
oPlayer.ScrollMarginY = 62
           If .ProcessAction(P2Actions) Then
              .CurState = (.CurState Mod (.rDef.Template.StateCount \ 2)) _
                        + .rDef.Template.StateCount \ 2
              .CurFrame = .CurFrame Mod .rDef.StateFrameCount(.CurState)
           Else
              .CurState = (.CurState Mod (.rDef.Template.StateCount \ 2))
           End If

          oMap.ViewTop = 240
          If P2OffsetX + oPlayer.ScrollMarginX > .X Then
              P2OffsetX = .X - oPlayer.ScrollMarginX
          End If
          If P2OffsetX + oMap.ViewWidth - oPlayer.ScrollMarginX < .X + nSprWidth Then
              P2OffsetX = .X - oMap.ViewWidth + oPlayer.ScrollMarginX + nSprWidth
          End If
          If P2OffsetY + oPlayer.ScrollMarginY > .Y Then
              P2OffsetY = .Y - oPlayer.ScrollMarginY
          End If
          If P2OffsetY + oMap.ViewHeight - oPlayer.ScrollMarginY < .Y + nSprHeight Then
              P2OffsetY = .Y - oMap.ViewHeight + oPlayer.ScrollMarginY + nSprHeight
          End If

          If P2OffsetX < 0 Then P2OffsetX = 0
          If P2OffsetY < 0 Then P2OffsetY = 0
           nLyrWid = oLayer.Columns * 32
           nLyrHgt = oLayer.Rows * 32
          If P2OffsetX > nLyrWid - oMap.ViewWidth Then P2OffsetX = nLyrWid - oMap.ViewWidth
          If P2OffsetY > nLyrHgt - oMap.ViewHeight Then P2OffsetY = nLyrHgt - oMap.ViewHeight
          oMap.Draw P2OffsetX, P2OffsetY, False
          oMap.ViewTop = 0
      End With
  End If

'Automatic Scrolling Stuff
  If ProjectObj.GamePlayer.rMap.name = "2-4BonusLevel" then
      XOff = XOff + 1
      With ProjectObj.GamePlayer
          if .PlayerSprite.X <= XOff then
              if .PlayerSprite.DX < 0 then .PlayerSprite.DX = 1
              .PlayerSprite.DX = .PlayerSprite.rDef.Template.MoveSpeed
              if .PlayerSprite.X < XOff - .PlayerSprite.Width / 2 then
                  XOff = 1
              End if
          end if
          .rMap.Draw XOff, YOff
      End With
  End If


If ProjectObj.GamePlayer.rMap.name = "4-2SpaceFlight" then
oPlayer.ScrollMarginX = 280
oPlayer.ScrollMarginY = 170
Dim ScrollerSprite
end if

End Sub

Sub Player_OnAfterMoveSprites()

   If IsEmpty(ScrollerSprite) Then
      Set ScrollerSprite = FindScrollerSprite
   End If

   If Not ScrollerSprite.rDef.rLayer.pMap Is ProjectObj.GamePlayer.rMap Then
      Set ScrollerSprite = FindScrollerSprite
   End If


   With ProjectObj.GamePlayer
      .MapScrollX = ScrollerSprite.X
      .MapScrollY = ScrollerSprite.Y
      If .PlayerSprite.Y > .MapScrollY + .rMap.ViewHeight - .ScrollMarginY - .PlayerSprite.Height Then
         .PlayerSprite.DY = -.PlayerSprite.rDef.Template.MoveSpeed
      ElseIf .PlayerSprite.Y < .MapScrollY + .ScrollMarginY Then
         .PlayerSprite.DY = .PlayerSprite.rDef.Template.MoveSpeed
      End If

      If .PlayerSprite.X > .MapScrollX + .rMap.ViewWidth - .ScrollMarginX - .PlayerSprite.Width Then
         .PlayerSprite.DX = -.PlayerSprite.rDef.Template.MoveSpeed
      ElseIf .PlayerSprite.X < .MapScrollX + .ScrollMarginX Then
         .PlayerSprite.DX = .PlayerSprite.rDef.Template.MoveSpeed
      End If
   End With

End Sub

Sub Player_OnControllerMove(OldActions, NewActions)

'Jumping Player
  With ProjectObj.GamePlayer.PlayerSprite
      If (Not OldActions) And NewActions And ACTION_BUTTON2 Then
          If (.rDef.SolidTest(.X, .Y + .Height) Or .rDef.SolidTest(.X + .Width - 1, .Y + .Height)) Or (Not .pRideOnRef Is Nothing) Then
              .DY = - .rDef.Template.JumpHeight
          End If
      End If
  End With

End Sub

intSprTwo = -1
HostObj.SinkObjectEvents ProjectObj.GamePlayer, "Player"
HostObj.SinkObjectEvents CurrentDisplay, "Display"
HostObj.ConnectEventsNow()


and all its saying now is that the scrollingsprite vaiable is undefined, which I think means that I need to put this in:

Code: [Select]
Function FindScrollerSprite()
   With ProjectObj.GamePlayer.PlayerSprite.rDef.rLayer
      For I = 0 To .SpriteCount - 1
         If Left(.Sprite(I).rDef.Name, 8) = "Scroller" Then
            Set FindScrollerSprite = .Sprite(I)
            Exit Function
         End If
      Next
   End With
End Function


but I haven't been able to figure out where to put it without getting a syntax error.

Heres the original script before my changes (since mine are probably wrong):

Code: [Select]
' ======== INITIAL STARTUP SCRIPT (Number 0) =========

Sub Player_OnPlayInit()
HostObj.StartScript=1
End Sub

HostObj.SinkObjectEvents ProjectObj.GamePlayer, "Player"
HostObj.ConnectEventsNow()
ProjectObj.GamePlayer.Play 16



Option Explicit

Dim XOff, YOff
Dim P2OffsetX, P2OffsetY
Dim P2Actions, intSprTwo

Const nSprWidth = 41
Const nSprHeight = 75

Sub Display_KeyDown(KeyCode, Shift)
' E=69, S=83, D=68, F=70
If KeyCode = 69 Then P2Actions = P2Actions Or ACTION_UP
If KeyCode = 83 Then P2Actions = P2Actions Or ACTION_LEFT
If KeyCode = 68 Then P2Actions = P2Actions Or ACTION_DOWN
If KeyCode = 70 Then P2Actions = P2Actions Or ACTION_RIGHT
End Sub

Sub Display_KeyUp(KeyCode, Shift)
If KeyCode = 69 Then P2Actions = P2Actions And Not ACTION_UP
If KeyCode = 83 Then P2Actions = P2Actions And Not ACTION_LEFT
If KeyCode = 68 Then P2Actions = P2Actions And Not ACTION_DOWN
If KeyCode = 70 Then P2Actions = P2Actions And Not ACTION_RIGHT
End Sub

Sub Player_OnAfterMoveSprites()

if ProjectObj.GamePlayer.rMap.Name = "4-2SpaceFlight" and YOff = 0 then YOff = 15003 - ProjectObj.GamePlayer.rMap.ViewHeight 'ProjectObj.GamePlayer.rMap.HeightHeight

  Dim oMap, oPlayer, oLayer, nLyrWid, nLyrHgt, i
  Set oPlayer = ProjectObj.GamePlayer
  Set oMap = oPlayer.rMap


'Two Player Stuff
'If ProjectObj.GamePlayer.rMap.name = "0-4LevelSelect" or ProjectObj.GamePlayer.rMap.name = "map2" or ProjectObj.GamePlayer.rMap.name = "map3" or ProjectObj.GamePlayer.rMap.name = "map4" then

  If ProjectObj.GamePlayer.rMap.name <> "0-4LevelSelect" then
      intSprTwo = -1
oPlayer.ScrollMarginY = 185
  else
Set oLayer = oMap.MapLayer(1)
      If intSprTwo < 0 then
          For i = 0 to oLayer.SpriteCount - 1
              If oLayer.Sprite(i).rDef.Name = "Player2" then intSprTwo = i
          next
      End If
      With oLayer.Sprite(intSprTwo)
oPlayer.ScrollMarginY = 62
           If .ProcessAction(P2Actions) Then
              .CurState = (.CurState Mod (.rDef.Template.StateCount \ 2)) _
                        + .rDef.Template.StateCount \ 2
              .CurFrame = .CurFrame Mod .rDef.StateFrameCount(.CurState)
           Else
              .CurState = (.CurState Mod (.rDef.Template.StateCount \ 2))
           End If

          oMap.ViewTop = 240
          If P2OffsetX + oPlayer.ScrollMarginX > .X Then
              P2OffsetX = .X - oPlayer.ScrollMarginX
          End If
          If P2OffsetX + oMap.ViewWidth - oPlayer.ScrollMarginX < .X + nSprWidth Then
              P2OffsetX = .X - oMap.ViewWidth + oPlayer.ScrollMarginX + nSprWidth
          End If
          If P2OffsetY + oPlayer.ScrollMarginY > .Y Then
              P2OffsetY = .Y - oPlayer.ScrollMarginY
          End If
          If P2OffsetY + oMap.ViewHeight - oPlayer.ScrollMarginY < .Y + nSprHeight Then
              P2OffsetY = .Y - oMap.ViewHeight + oPlayer.ScrollMarginY + nSprHeight
          End If

          If P2OffsetX < 0 Then P2OffsetX = 0
          If P2OffsetY < 0 Then P2OffsetY = 0
           nLyrWid = oLayer.Columns * 32
           nLyrHgt = oLayer.Rows * 32
          If P2OffsetX > nLyrWid - oMap.ViewWidth Then P2OffsetX = nLyrWid - oMap.ViewWidth
          If P2OffsetY > nLyrHgt - oMap.ViewHeight Then P2OffsetY = nLyrHgt - oMap.ViewHeight
          oMap.Draw P2OffsetX, P2OffsetY, False
          oMap.ViewTop = 0
      End With
  End If

'Automatic Scrolling Stuff
  If ProjectObj.GamePlayer.rMap.name = "2-4BonusLevel" then
      XOff = XOff + 1
      With ProjectObj.GamePlayer
          if .PlayerSprite.X <= XOff then
              if .PlayerSprite.DX < 0 then .PlayerSprite.DX = 1
              .PlayerSprite.DX = .PlayerSprite.rDef.Template.MoveSpeed
              if .PlayerSprite.X < XOff - .PlayerSprite.Width / 2 then
                  XOff = 1
              End if
          end if
          .rMap.Draw XOff, YOff
      End With
  End If

If ProjectObj.GamePlayer.rMap.name = "4-2SpaceFlight" then
oPlayer.ScrollMarginX = 280
oPlayer.ScrollMarginY = 170
end if

'Automatic Scrolling Stuff 2
  If ProjectObj.GamePlayer.rMap.name = "4-2SpaceFlight" then
      YOff = YOff - 1
      With ProjectObj.GamePlayer
          if .PlayerSprite.Y <= YOff then
              if .PlayerSprite.DY > 0 then .PlayerSprite.DY = -1
              .PlayerSprite.DY = -.PlayerSprite.rDef.Template.MoveSpeed
              if .PlayerSprite.Y > YOff + .rMap.ViewHeight - .PlayerSprite.Height / 2 then
                  YOff = ProjectObj.GamePlayer.rMap.Height - ProjectObj.GamePlayer.rMap.ViewHeight 'YOff = 1
              End if
          end if
          .rMap.Draw XOff, YOff
      End With
  End If
End Sub

Sub Player_OnControllerMove(OldActions, NewActions)

'Jumping Player
  With ProjectObj.GamePlayer.PlayerSprite
      If (Not OldActions) And NewActions And ACTION_BUTTON2 Then
          If (.rDef.SolidTest(.X, .Y + .Height) Or .rDef.SolidTest(.X + .Width - 1, .Y + .Height)) Or (Not .pRideOnRef Is Nothing) Then
              .DY = - .rDef.Template.JumpHeight
          End If
      End If
  End With

End Sub

intSprTwo = -1
HostObj.SinkObjectEvents ProjectObj.GamePlayer, "Player"
HostObj.SinkObjectEvents CurrentDisplay, "Display"
HostObj.ConnectEventsNow()
Title: forced scrolling modification
Post by: billybob884 on 2005-08-16, 11:45:37 PM
this is un-related to the topic, but is there a 256 frame limit on a sprites animation? don't think that i figured it out based on some mini-revalation based on figuring out the program or something, i just tried to make a realllly long sprite animation is all. heh :D
Title: forced scrolling modification
Post by: bluemonkmn on 2005-08-17, 06:13:45 AM
First of all you can't have multiple OnAfterMoveSprites subroutines.  You have to merge the contents of the new one into the existing one.  I think you're close -- just do this:
1) Delete the End Sub for your first OnAfterMoveSprites
2) Delete the "Sub Player_OnAfterMoveSprites()" that follows
3) Move the "End If" that was right before the "End Sub" down to by right before the next End Sub (for OnAfterMoveSprites).

This will merge the two OnAfterMoveSprite functions into one and cause the contents of the second one to only be executed when you are on map 4-2SpaceFlight.

There's one more thing I think I neglected to mention (sorry) and you have it, but it's in the wrong place:
Code: [Select]
Dim ScrollerSprite
That line should by up with your other Dim Statements under the Option Explicit.  If you have it where it is now inside the OnAfterMoveSprites sub, then it will be reset each frame when it hits the End Sub.  (A variable that is declared inside a sub only lasts as long as the Sub.)

Also, it's very possible that there is a 256-frame limit for a sprite animation.  I don't have time to investigate now though.
Title: forced scrolling modification
Post by: billybob884 on 2005-08-17, 09:30:11 AM
Ok, so I don't need to add in that whole Function FindScrollerSprite() section I mentioned?

---edit---
yea im gonna need that because when i try to go to that level via the level select it crashes and says
Script stopped at line 106 on character 7:
Variable is undefined: 'FindScrollerSprite'

ill do a little experimenting and see if i get lucky

---edit2---
ehhh... no luck..
Title: forced scrolling modification
Post by: bluemonkmn on 2005-08-18, 06:39:28 AM
Oh yeah, I forgot to re-state you do need that function too.  Didn't my original message state that?  That function must be inserted into the script just like any other function.  Make sure you don't paste it into an existing sub, just put it near the top or bottom outside all the other subroutines.
Title: forced scrolling modification
Post by: billybob884 on 2005-08-18, 08:13:35 AM
Mmm ok, put it right @ the top underneath the DimScrollerSprite line, but now it's saying that variable I is undefined.

---edit---
is it possible its getting confused because ive already got a similar thing in there for the other version of the scrolling script for the 2-4 level using the same I variable (since i didn't want to have to change that)?

---edit2---
mmm io tried changing all the I's to Q's to see if a letter change would work but no now its asking for variable Q

<sarcasm>didnt see that 1 coming!</scarcasm>
Title: forced scrolling modification
Post by: bluemonkmn on 2005-08-18, 04:28:10 PM
OK, I see that I neglected to declare the variable "I" in the FindScrollerSprite function.  Bad me.  Add this line right after "Function FindScrollerSprite()" (yes, inside the Sub this time):
Code: [Select]
Dim I
Title: forced scrolling modification
Post by: billybob884 on 2005-08-18, 05:59:52 PM
heh allright! works! now to test the ending sequence.
Title: forced scrolling modification
Post by: billybob884 on 2005-08-19, 05:16:33 PM
mmmm seem to be having a little problem with the level.. when i first go into hte level and play normally, it all works fine, it follows the scroller sprite by putting it at the top corner ofhte screen, but when i die and it resets the map, it scrolls at a doubled speed, and since the scroller sprite is a horisontal bar the same width as the screen, the player gets caught on it (due to a collision definition). what i thought it was trying to do was follow that sprite but in the bottom courner of hte screen as opposed to the top. so i removed all the colisions for this and died again, this time it scrolled me right up to the place where i died and stopped. then it wouldnt move at all, even when the "scroller" sprite caught up to it. very strange
Title: forced scrolling modification
Post by: bluemonkmn on 2005-08-21, 08:20:38 AM
1) You shouldn't have a collision definition between the scroller sprite and the player.
2) The sprite doesn't need to be a horizontal bar (it can just be an invisible few pixels)
3) You need to restart the scroller sprite when you die. (This is the real problem).
Title: forced scrolling modification
Post by: billybob884 on 2005-08-21, 09:26:30 AM
mmm when the player dies he activates a function that sqitches to teh same map and resets all sprites already
ill post the level later today

-----
k here it is, i deleted as much as possible to make it smaller, its like 5.5mb
http://www.angelfire.com/ct3/billybob884/Chameleon_Man.rar
Title: forced scrolling modification
Post by: bluemonkmn on 2005-08-21, 02:42:34 PM
After Dim ScrollerSprite, add this line:
Code: [Select]
ScrollerSprite = -1
Change this code in OnAfterMoveSprites:
Code: [Select]
  If ScrollerSprite < 0 Then
      ScrollerSprite = FindScrollerSprite
   End If

   If ProjectObj.GamePlayer.PlayerSprite.rDef.rLayer.SpriteCount <= ScrollerSprite Then
      ScrollerSprite = FindScrollerSprite
   End If

   If ScrollerSprite >= 0 Then
      If Left(ProjectObj.GamePlayer.PlayerSprite.rDef.rLayer.Sprite(ScrollerSprite).rDef.Name, 8) <> "Scroller" Then
         ScrollerSprite = FindScrollerSprite
      End If
   End If

   With ProjectObj.GamePlayer
      .MapScrollX = .PlayerSprite.rDef.rLayer.Sprite(ScrollerSprite).X
      .MapScrollY = .PlayerSprite.rDef.rLayer.Sprite(ScrollerSprite).Y

And use an updated version of FindScrollerSprite:
Code: [Select]
Function FindScrollerSprite()
   Dim I
   With ProjectObj.GamePlayer.PlayerSprite.rDef.rLayer
      For I = 0 To .SpriteCount - 1
         If Left(.Sprite(I).rDef.Name, 8) = "Scroller" Then
            FindScrollerSprite = I
            Exit Function
         End If
      Next
   End With
   FindScrollerSprite = -1
End Function
Title: forced scrolling modification
Post by: billybob884 on 2005-08-21, 07:38:46 PM
whereabouts in the sub should i put that (the middle quote), maybe over the part that says
   If IsEmpty(ScrollerSprite) Then
      Set ScrollerSprite = FindScrollerSprite
   End If

   If Not ScrollerSprite.rDef.rLayer.pMap Is ProjectObj.GamePlayer.rMap Then
      Set ScrollerSprite = FindScrollerSprite
   End If
?

also, do i need to put "end with" at the end of it?


-----edit-----

and i dont know what those other spam messages are...
Title: forced scrolling modification
Post by: bluemonkmn on 2005-08-22, 06:04:14 AM
Spam messages deleted.

The middle code block should replace the code that looks similar

You're close to correct on which code to replace I think.  But you want to include the subsequent "With" and the first two lines inside the "With" as well.  I think they already look similar to the new code (they start the same way but I changed the end I think).  You already have an end with later on.
Title: forced scrolling modification
Post by: -billybob884- on 2005-08-22, 12:34:06 PM
mm well, im gonna have to pyut that on hold for a day or two, i tried to install a codec pack for a movie i downloaded *watches for the RIAA*, and it changed siomething it shouldnt have, and now i cant open any folders or internet explorer. *sigh* when will i learn?
Title: forced scrolling modification
Post by: teh n00b on 2005-08-22, 11:31:41 PM
u n00b its mpaa...
Title: forced scrolling modification
Post by: billybob884 on 2005-08-22, 11:38:47 PM
ok, i put it in like this, it looks right to me (of course thats not saying much),
Code: [Select]
If ProjectObj.GamePlayer.rMap.name = "4-2SpaceFlight" then
oPlayer.ScrollMarginX = 5
oPlayer.ScrollMarginY = 5

   If ScrollerSprite < 0 Then
      ScrollerSprite = FindScrollerSprite
   End If

   If ProjectObj.GamePlayer.PlayerSprite.rDef.rLayer.SpriteCount <= ScrollerSprite Then
      ScrollerSprite = FindScrollerSprite
   End If

   If ScrollerSprite >= 0 Then
      If Left(ProjectObj.GamePlayer.PlayerSprite.rDef.rLayer.Sprite(ScrollerSprite).rDef.Name, 8) <> "Scroller" Then
         ScrollerSprite = FindScrollerSprite
      End If
   End If

   With ProjectObj.GamePlayer
      .MapScrollX = .PlayerSprite.rDef.rLayer.Sprite(ScrollerSprite).X
      .MapScrollY = .PlayerSprite.rDef.rLayer.Sprite(ScrollerSprite).Y
      .MapScrollX = ScrollerSprite.X
      .MapScrollY = ScrollerSprite.Y
      If .PlayerSprite.Y > .MapScrollY + .rMap.ViewHeight - .ScrollMarginY - .PlayerSprite.Height Then
         .PlayerSprite.DY = -.PlayerSprite.rDef.Template.MoveSpeed
      ElseIf .PlayerSprite.Y < .MapScrollY + .ScrollMarginY Then
         .PlayerSprite.DY = .PlayerSprite.rDef.Template.MoveSpeed
      End If

      If .PlayerSprite.X > .MapScrollX + .rMap.ViewWidth - .ScrollMarginX - .PlayerSprite.Width Then
         .PlayerSprite.DX = -.PlayerSprite.rDef.Template.MoveSpeed
      ElseIf .PlayerSprite.X < .MapScrollX + .ScrollMarginX Then
         .PlayerSprite.DX = .PlayerSprite.rDef.Template.MoveSpeed
      End If
   End With

end if


and its telling me Object Required: 'ScrollerSprite' (line 123 character 7)
Title: forced scrolling modification
Post by: bluemonkmn on 2005-08-23, 05:40:20 AM
The lines that start with .MapScrollX and .MapScrollY were supposed to replace the similar two lines that follow.  Delete the 2 shorter lines.
Title: forced scrolling modification
Post by: bluemonkmn on 2005-08-23, 06:26:01 AM
I have updated the FAQ to include the new scrolling logic.  Anybody want to double-check / verify my work?
http://sourceforge.net/docman/display_doc.php?docid=26306&group_id=9970
Title: forced scrolling modification
Post by: billybob884 on 2005-08-23, 08:49:40 AM
ok! verified!  ;)
Title: Forced Scrolling?
Post by: Bonez on 2005-08-26, 02:41:17 PM
I just went over this script and such, I am just curious if any of you could help with a forced screen scroll in the Y direction for a Top down game like spy hunter?
Title: Re: Forced Scrolling?
Post by: bluemonkmn on 2005-08-26, 03:38:20 PM
Quote from: "Bonez"
I just went over this script and such, I am just curious if any of you could help with a forced screen scroll in the Y direction for a Top down game like spy hunter?


Why do you need help?  Just use the script described and connect it to a sprite that moves "in the Y direction"... (by naming the sprite "Scroller")
Title: forced scrolling modification
Post by: Anonymous on 2005-08-30, 11:27:09 PM
And........ All that it does is push the sprite all the way to the right of the screen while doing a force screen scroll, not to mention I lose all control of the  sprite. i.e. Player Sprite
Title: forced scrolling modification
Post by: Anonymous on 2005-08-30, 11:34:57 PM
Also, so I can clarify I'd like the scrolling to begin at the bottom of the map. The map is around 400000 units big and the game starts at the bottom of the map. Therefore the player sprite would be scrolling all the way from the bottom of the map to the top of the map. And again, I have no control whatsoever over the character
Title: forced scrolling modification
Post by: bluemonkmn on 2005-08-31, 06:15:36 AM
Well, I can prove that it works: perhaps this sample will also help you see in detail how to make your project work:
http://gamedevprj.sourceforge.net/files/AutoScroller.zip
Title: forced scrolling modification
Post by: Anonymous on 2005-08-31, 09:24:44 AM
Not saying that it doesnt scroll, what I am saying it forces the player sprite to move all the way in the X direction and you have absoluetely no control, but while doing that it is auto scrolling, just in a broken way. If you dont believe me try making a top down and see what happens
Title: forced scrolling modification
Post by: Anonymous on 2005-08-31, 09:36:27 AM
I have no idea why, but the player sprite isnt even named Scroll , or anything related to it , and for whatever reason the screen scrolls down instead of up, makes no sense to me, but I do lose control as well as having the screen scroll in the opposite direction
Title: forced scrolling modification
Post by: Anonymous on 2005-08-31, 09:45:11 AM
Ok, I got it to scroll in the right direction now, the only problem I am having, again, is the control issue, its like , on a certain side of the path there is this invisible barrier that is acting like collision of some sort. Its very strange.
Title: forced scrolling modification
Post by: bluemonkmn on 2005-08-31, 04:06:13 PM
Did you compare the provided project to your own?  Does the provided project behave kind of like you want yours to behave?
Title: forced scrolling modification
Post by: Anonymous on 2005-08-31, 04:32:01 PM
Yes it behaves almost exactly, except for the fact that again my player sprite goes awol and , its almost like a tunnel vision in a sense that the sprite cannot pass a certain barrier
Title: forced scrolling modification
Post by: Anonymous on 2005-08-31, 06:00:34 PM
By the way, i am using the Res of 1024 x 768 , could that have an effect on it?
Title: forced scrolling modification
Post by: bluemonkmn on 2005-09-01, 05:38:00 AM
Try reducing the scroll margins on the player settings dialog to zero.  They determine how close the player can get to the edge of the display window.  I hope the resolution isn't the source of the problem -- I don't think it should be.
Title: forced scrolling modification
Post by: Anonymous on 2005-09-01, 09:15:53 AM
Since I suck with scripting in SGDK , can you point me to the correct line of code as well as what values to chngee?
Title: forced scrolling modification
Post by: durnurd on 2005-09-01, 10:50:56 AM
The scroll margins aren't in the script, they're in the player settings dialog in SGDK itself (the little key icon on the menu).  Just under the "Start on map" there's two Scroll Margins boxes.  Change the values to zero.
Title: forced scrolling modification
Post by: Anonymous on 2005-09-01, 11:05:34 AM
Thanks alot guys, you rock