-
Content Count
93 -
Joined
-
Last visited
Content Type
Profiles
Member Map
Forums
Blogs
Gallery
Calendar
Store
Everything posted by Jan Hermanns
-
Are you using batari Basic? If so, maybe you should post your question in the batari Basic forum.
-
Truth is, most of those sprites are based on the TI-83 calculator port of Super Mario Land, because Gameboy sprites are generally to wide - remember VCS sprites are max 8 px!
-
Not yet. But I could probably hack one, over the weekend. Anyone else interested in a PAL version?
-
What do you mean? You like this crappy hack better than the original? That would truly be a shame!
-
It's not that I'm gonna make cartridges or something - so it's not that subversive And regarding that other homebrew... C'mon, I mean what were they thinking!?
-
Well, I don't have the balls to do it and I don't like disneyland anyway... But why don't you do it yourself? You could even change the "lov3machine" moniker on the titlescreen to "nintendo", to make them really angry - though be sure you want their full attention
-
Screenshots
-
Blinky Goes Up (formerly GIANA BROS)
Jan Hermanns replied to Jan Hermanns's topic in Atari 2600 Programming
Not exactly a sequel, but at least a nice little hack: http://atariage.com/forums/topic/220678-super-mario-goes-up/ -
Here is a late xmas present to all the nice people here at the AA community! If you like this hack, consider buying "Blinky Goes Up" - it's the original and much better than this hack! http://atariage.com/store/index.php?l=product_detail&p=1020 Have fun! Jan mario_ntsc.bin
-
Source code release "Blinky Goes Up"
Jan Hermanns replied to Jan Hermanns's topic in Atari 2600 Programming
Thank you! Btw, big levels like level 3 need aprox. 160 Bytes, so a 32k ROM could easily have 150 big levels... -
Title Match Pro Wrestling and programming
Jan Hermanns replied to atari2600land's topic in Atari 2600 Programming
Turns out, it's quite easy to implement a decent fighting logic... Here is an excerpt from the article "The Making Of: IK+" The development of IK+’s AI was, though prosaic by comparison, no less efficient. “It was easy, basically,” Maclean boasts. “In those days, it wasn’t even called AI – we would have called it ‘fighting logic’, or something. The whole thing was based on look-up tables of what moves to use based on how far away the opponent was. The game obviously knows which move, if it were used, would lead to a direct hit at that point in time. For the easy difficulty level, right at the start, the computer fighters would, 90 per cent of the time, look at what the best move would be and then ignore it. As the level of difficulty increased that percentage would drop, until level 25 or thereabouts where it would be 95 per cent accurate. It worked beautifully.” -
Yeah, my C-skills are a bit rusty - but since we're at it. Shouldn't it be "unsigned char*"
-
Absolutely true, because this is the big idea behind C - abstract away the processor details to increase portability. One last thing, you could use the "register" keyword in C. It's a hint to the compiler to keep a variable in a processor register if possible.
-
If you define a static data set it'll always use memory. In case of the 2600 it'll use ROM, because it's the only memory this poor device has (apart from the 128 bytes RAM) - in case of a modern computer it'll use RAM. When programming the 2600 it is often sufficient to load static data to one of the processor registers and then store it directly to some RIOT register - without using a temporary RAM variable, e.g. COLUP0 equ $46 LDA #7 STA COLUP0 But, you can do exactly the same in C (if that's what you're after): int* colup0 = (int *)0x46; *colup0 = 7; Any decent C-Compiler would optimize this to the same asm code as above.
-
Not much going on here: - the first instruction loads the value at address "index" to the X register - the second instructions loads the value at address "DataSet" + "the value in the X register" into the accumulator. As others pointed out the "LDA DataSet,X" would normally be executed in a loop. And you probably would rather use an immediate LDX #index (the difference is the '#' which means take the value of index rather than the value at the address index is pointing to). The stack is not affected by those instructions. Don't confuse the "LDA DataSet,X" with a subroutine call - it's just the 6502 pendant to the C idiom: DataSet[index] take care!
-
Source code release "Blinky Goes Up"
Jan Hermanns replied to Jan Hermanns's topic in Atari 2600 Programming
Maybe, if my plan works. Here it is: 1. I'll program a level-editor and release it 2. Hope that a little community gathers and that those people design new levels 3. I release a 32k Version with those levels -
Source code release "Blinky Goes Up"
Jan Hermanns replied to Jan Hermanns's topic in Atari 2600 Programming
You're welcome! I really think you should start learning Assembly language. You're very creative with Batari - but imagine how nice it would be if you had total control over the VCS Please let me know, if I can help you in any way. -
Hi Guys, here is the source code of "Blinky Goes Up". I hope this may help some future 2600 homebrewers. Have fun! Jan blinky.asm
-
Blinky Goes Up (formerly GIANA BROS)
Jan Hermanns replied to Jan Hermanns's topic in Atari 2600 Programming
Thanks for the love! And I really like that photo :-) Actually, Tooby was inspired by one of the enemies in Giana Sisters. Thanks! It was a lot of work though. -
Blinky Goes Up (formerly GIANA BROS)
Jan Hermanns replied to Jan Hermanns's topic in Atari 2600 Programming
Thank, you very much! But what do you mean by What should be random? I was once thinking about an "infinity mode" (in style of "Super Mario Infinity", i.e. generated levels) but I'm not shure if it is a good idea... -
Idea for the next version of Stella (if possible)
Jan Hermanns replied to Syntaxerror999's topic in Atari 2600 Programming
Works like a charm :-) Thank you so much! -
Idea for the next version of Stella (if possible)
Jan Hermanns replied to Syntaxerror999's topic in Atari 2600 Programming
Could you please elaborate on this? How exactly do I get stella to show my labels? -
Idea for the next version of Stella (if possible)
Jan Hermanns replied to Syntaxerror999's topic in Atari 2600 Programming
VICE has a nice feature I would love to see in Stella. There you can feed the debugger a label file, which is very convenient when debugging. Would be great if you could specify the label file as a command line parameter. -
Assembly Gurus: Flicker-Free Multi Sprite Possible?
Jan Hermanns replied to Gemintronic's topic in Atari 2600 Programming
Wow, that is some clever interlacing! Very well done! -
Any Homebrew Programmers for Hire?
Jan Hermanns replied to Hamburgerman's topic in Atari 2600 Programming
Cmon, are you serious? I chose the 2600 because I found it the most simple 8 bit system around. True, it has it's limitations - but programming the 2600 is dead simple.