Author Topic: Smooth Scrolling Tilemapper  (Read 20094 times)

0 Members and 1 Guest are viewing this topic.

Offline Galandros

  • LV9 Veteran (Next: 1337)
  • *********
  • Posts: 1140
  • Rating: +42/-10
    • View Profile
Re: Smooth Scrolling Tilemapper
« Reply #45 on: July 02, 2010, 04:20:40 am »
Looks nice DJ.
And makes me remember Sonic bonus levels. ^^
Hobbing in calculator projects.

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55941
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: Smooth Scrolling Tilemapper
« Reply #46 on: July 02, 2010, 04:59:08 am »
thanks ^^

Offline Quigibo

  • The Executioner
  • CoT Emeritus
  • LV11 Super Veteran (Next: 3000)
  • *
  • Posts: 2031
  • Rating: +1075/-24
  • I wish real life had a "Save" and "Load" button...
    • View Profile
Re: Smooth Scrolling Tilemapper
« Reply #47 on: July 02, 2010, 06:35:05 am »
Awesome job!

By the way:
Code: [Select]
For(Z,1,7)
Copy(L6,Z*96+L6,96)
End
can be
Code: [Select]
Copy(L6,L6+96,96*7)Since once the first 8 rows are copied to the second 8 rows, the pointer is now on the 2nd row, so its now copying the second row to the third row, etc.
« Last Edit: July 02, 2010, 06:35:47 am by Quigibo »
___Axe_Parser___
Today the calculator, tomorrow the world!

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55941
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: Smooth Scrolling Tilemapper
« Reply #48 on: July 02, 2010, 09:20:37 am »
Nice, I didn't know it would repeat like this in this case. I'll give this a try. Thanks for the tip!

EDIT: Tried it and it works pretty well. I wonder if the speed increases? I am sure I am noticing something slightly faster
« Last Edit: July 02, 2010, 09:26:32 am by DJ Omnimaga »

Offline ztrumpet

  • The Rarely Active One
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 5712
  • Rating: +364/-4
  • If you see this, send me a PM. Just for fun.
    • View Profile
Re: Smooth Scrolling Tilemapper
« Reply #49 on: July 03, 2010, 11:15:24 am »
Nice!  That's a really cool idea.  Great job! ;D