Jump to content
IGNORED

Moving from screen to screen


piders7

Recommended Posts

Piders7,

 

Attached is what I used and learned from. If side scrolling that is smooth like Super Mario then http://atariage.com/forums/topic/215171-princess-rescue-batari-basic-source-code/?hl=%2Bprincess+%2Brescue&do=findComment&comment=3177516 has the source code. Also the game I made from all the examples I could find here in the forum is at:

 

Pac_Man Eat n Run

http://atariage.com/forums/topic/257359-pac-man-ean-n-run/page-2?hl=%2Bpacman&do=findComment&comment=3617489

 

There are some tutorials the Random Terrain maintains that I think almost everyone refers to at:

 

http://www.randomterrain.com/atari-2600-memories-batari-basic-commands.html

 

Hopes this helps, thanks.

Link to comment
Share on other sites

Piders7,

 

This what I used to make the data statements that are from the thread that Ultima posted. The excel sheet is where I did the calculations based off of Stargunner's example. Also to move just left and right and not move all directions maybe a little easier to start with. That is what I started with and then moved up to this example.

 

rem player changes screen left and right
if player0x=135 then player0x=15 : canal = canal-1
if player0x=10 then player0x=130 : canal = canal+1
if canal > 5 then canal = 5

 

rem which screen is next left or right
if canal = 0 then gosub draw_canal_shape_3 bank6
if canal = 1 then gosub draw_canal_shape_1 bank6
if canal = 2 then gosub draw_canal_shape_2 bank6
if canal = 3 then gosub draw_canal_shape_1 bank6
if canal = 4 then gosub draw_canal_shape_2 bank6
if canal = 5 then gosub draw_canal_shape_0 bank6

 

The code above is just to move left and right. Hope this helps, thanks.

Game Data - Legends Unite.xls

move around rooms DPC+.txt

move_around_rooms.bas

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...