Author Topic: Celtic III Scrolling Background Tutorial  (Read 14610 times)

0 Members and 1 Guest are viewing this topic.

Offline {AP}

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 981
  • Rating: +74/-3
  • I am Webmaster!
    • View Profile
    • Removed From Game
Re: Celtic III Scrolling Background Tutorial
« Reply #30 on: May 19, 2009, 08:39:55 pm »
Oooo... 16x16 would be fun to play with too.
I'll mess with it at a later date though.
Busybusybusy..

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: Celtic III Scrolling Background Tutorial
« Reply #31 on: May 19, 2009, 08:54:52 pm »
Busybusybusy..
Nyaar Raycaster edition

Offline trevmeister66

  • LV9 Veteran (Next: 1337)
  • *********
  • Posts: 1009
  • Rating: +14/-5
    • View Profile
Re: Celtic III Scrolling Background Tutorial
« Reply #32 on: May 19, 2009, 09:07:17 pm »
Projects:    nameless RPG: 1.0%  |  Reverse Snake v1.5: 100%  |  Secret Project: 5%  |  DUNGEON: 70%

My MW2 Blog <-- Please visit :)

Offline noahbaby94

  • LV7 Elite (Next: 700)
  • *******
  • Posts: 585
  • Rating: +29/-24
    • View Profile
    • My blog
Re: Celtic III Scrolling Background Tutorial
« Reply #33 on: May 19, 2009, 09:08:35 pm »
Screw raycasting we need raytracing.
That's what she said!!!

Offline Builderboy

  • Physics Guru
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 5673
  • Rating: +613/-9
  • Would you kindly?
    • View Profile
Re: Celtic III Scrolling Background Tutorial
« Reply #34 on: May 19, 2009, 09:29:13 pm »
We need to port Crysis to 84's

Offline Iambian

  • Coder Of Tomorrow
  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 739
  • Rating: +216/-3
  • Cherry Flavoured Nommer of Fishies
    • View Profile
Re: Celtic III Scrolling Background Tutorial
« Reply #35 on: May 19, 2009, 10:44:34 pm »
Offtopic, much?

If you want 16*16 sooner, why don't you put up some code for it?
A Cherry-Flavored Iambian draws near... what do you do? ...

Offline Builderboy

  • Physics Guru
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 5673
  • Rating: +613/-9
  • Would you kindly?
    • View Profile
Re: Celtic III Scrolling Background Tutorial
« Reply #36 on: May 19, 2009, 10:55:56 pm »
Noahbaby drifted, i drifted more :)

Offline Eeems

  • Mr. Dictator
  • Administrator
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 6265
  • Rating: +318/-36
  • little oof
    • View Profile
    • Eeems
Re: Celtic III Scrolling Background Tutorial
« Reply #37 on: May 19, 2009, 11:01:12 pm »
onto UnSS I see
/e

Offline Eeems

  • Mr. Dictator
  • Administrator
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 6265
  • Rating: +318/-36
  • little oof
    • View Profile
    • Eeems
Re: Celtic III Scrolling Background Tutorial
« Reply #38 on: June 11, 2009, 08:28:45 pm »
hmm, I just noticed a slight optimization you could make to the code, at the start where it goes
Code: [Select]
:0->X
:0->Y
you could change that to
Code: [Select]
:Delvar XDelvarYit would save 3 bytes I believe

EDIT: upon closer inspection I found another optimizations, replace
Code: [Select]
:M+(K=34)(M<5)-(K=25)(M>1→Mwith this:
Code: [Select]
:M+(K=34 and M<5)-(K=25 and M>1→Mso that brings the total bytes saved to 5...
« Last Edit: June 12, 2009, 12:07:23 am by Eeems »
/e

Offline {AP}

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 981
  • Rating: +74/-3
  • I am Webmaster!
    • View Profile
    • Removed From Game
Re: Celtic III Scrolling Background Tutorial
« Reply #39 on: June 20, 2009, 12:22:04 am »
I coded this thing too fast. Thanks for the optimizations though.
Sometimes you just don't notice these things, eh? =P

Offline Eeems

  • Mr. Dictator
  • Administrator
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 6265
  • Rating: +318/-36
  • little oof
    • View Profile
    • Eeems
Re: Celtic III Scrolling Background Tutorial
« Reply #40 on: June 20, 2009, 04:17:23 pm »
yeah, I always see them when I go back through my code, afterwards I always wonder what I was thinking when I used that piece of code
/e

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: Celtic III Scrolling Background Tutorial
« Reply #41 on: November 12, 2009, 11:52:08 pm »
I moved this in help and support because since it was in another project forum it wasn't visible too much for those who wants help x.x

Offline meishe91

  • Super Ninja
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2946
  • Rating: +115/-11
    • View Profile
    • DeviantArt
Re: Celtic III Scrolling Background Tutorial
« Reply #42 on: August 08, 2010, 01:27:36 pm »
Ya, this is a necro-post. But oh well, just letting people know that {AP}'s tutorials are now in the Tutorial thread :)
Spoiler For Spoiler:



For the 51st time, that is not my card! (Magic Joke)

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: Celtic III Scrolling Background Tutorial
« Reply #43 on: August 08, 2010, 06:15:00 pm »
Nice :)