Jump to content

Just Jeff

Members
  • Posts

    597
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    Virginia
  • Interests
    Atari 2600 programming.

Recent Profile Visitors

9,152 profile views

Just Jeff's Achievements

Dragonstomper

Dragonstomper (6/9)

386

Reputation

  1. Yeah.. I was setting it up at an event and connected it to the facility's WIFI but it wouldn't exit the setup screen thereafter. I then tried it using my phone's hot spot and I then could exit the setup menu.
  2. Hey does anyone know how to exit the setup screen?
  3. I was in a similar situation and what I did to start was simply read the "Stella Programmers Guide" a couple of times (While hunting in my blind)- Without learning any assemble code.. I found it surprisingly easy to understand and interesting- just looked up words and concepts as I went along so I gained most (but not all) understanding. Then I did the same thing with "Assembly In One Step" Those two documents together add up to only like 50 pages.
  4. OK The passenger animation is done and he's quite sassy now.. Additionally, I wrote the fuel code so you are now able to get gas. While I was at it, I replaced some of the placeholder graphics in that part of the kernel as you can see below. A rare opportunity to have one pad on the horizon immediately above another- because fuel pads never have passengers that use a moving GRP1. The other likely case where this may be possible will be when the upper pad is either pad 1 or pad 4 since they can be drawn with missiles/ball sometimes (Coincidentally we're at pad 4 here, but I could not use that technique). Note: the fuel can can be drawn this way as well as with playfield and one missile/ball. .bin attached SpaceTaxi.asm.bin
  5. Hmm I checked it all out.. I think you guys give me too much credit. Do I need to know Python? I did think of something on the way to work the other day.. Using my graphics spreadsheet formula and just re-arranging it a little bit, I can paste the samples in columns B and C, then concatenate in column A, then copy/paste column A into my code. I would have to break up line 2 manually here to add my labels. Is what your suggesting easier? Thanks! -Jeff
  6. Thanks! Yeah I'll be animating the passenger at some point. I've always liked the C64 passenger's attitude when boarding and exiting. I'll see if I can do that using only ten dots! PAL- maybe. But if I do, it would be after almost everything else. Everything for the cartridge has been arranged. The rights have been squared away with the IP owner and with Albert's assistance who would, of course, be publishing it. I'm targeting 24 levels. I don't think I'll need to reduce anything to do that. And FYSA, I haven't made any effort on the background graphics yet really. I just put some quick and dirty graphics in there so you can recognize which screen you're on, and so I can write the tables, etc that make the game work in general. So, for example, Short and Sweet screen will have the candy cane, gumdrops (maybe Starburst Fruit Chews if I can't round them off), candy cane border, the lollypop's resolution will be doubled. Taxi Pong will have a bouncing ball, net, more paddle detail, etc. Taxi Trainer and Cactus aren't even close yet. In fact, those are the pads for Teleports screen. I just threw it in there so I could fill in tables and address them. Its tempting to do the graphics stuff now, but... bigger, boring, universal stuff first. Yeah I'm doing the voice the hard way. I don't like using modern hardware. It's just not my thing. I always have this "Could they have done this?" goal that guides me. Anyway, coincidentally.. I intend to work on the passenger kernel band today because the voice code doesn't fit in it and so contributes to the poor voice quality. So maybe while I'm in there, I'll look into animation. Finally.. I've been training for a marathon and it's prevented me from working on this for the most part. But the peak training is done and the marathon is two weeks from today, after which I should have a lot more time for development! -Jeff
  7. Good Morning, Does anyone know of a tool that will take two blocks of data and combine them in an interlaced manner? I have some voice samples for a 2600 game I'm writing that will run faster if two samples are stored together- a byte from one, then a byte from the other, and so on like this: 1st byte is from "Hey Taxi", 2nd is from "Thanks", 3rd is from "Hey Taxi", 4th from "Thanks", and so on. Thanks!
  8. So I had a similar conversation with James @ZeroPage Homebrew just prior to the show. I believe I might have fixed it in the attached .bin but I don't have any way to test because I use Plus and Harmony on a 2600. Please give it a shot and let me know. I also did a quick and dirty test of a voice volume fix. Please let me know if its louder now. Thanks! -Jeff SpaceTaxi.asm.bin
  9. If you hit the left fire button (F on your keyboard) it will restart.
  10. Thanks! I did it a few years ago when I was still learning 6502 and Stella. The effort to make that friggin' bottom thruster look PETSCII..:
  11. Hello! Here's the WIP .bin that will be displayed at the AtariAge booth in Portland next weekend. Enjoy! -Jeff SpaceTaxi.asm.bin
  12. Yes.. The peace that comes from not having to be indecisive about the idea any longer. Anyway, I've gotten back to it and am making some progress...
  13. I thought about something like that but I'd have to put it in all the banks where all the data is. Additionally, I'm not only flipping one byte, There are two bytes involved where they are flipped and switched out with the other byte- so it gets me almost nowhere.. I tried using a 16 byte table to at least flip the right nybble to the left nybble of the other byte but it didn't really help me. Thanks!
  14. Thanks! It will save 2 cycles with direct replacement. It does require using a byte of temp RAM but fortunately, that made me realize I could use that elsewhere for another 7 cycles saved. I could save another two cycles by introducing a 2nd temp byte to replace RAM1,x on the 3rd and 7th lines if I choose. Any other ideas anyone? RAM1 ;Swap space, no permanent game data RAM2 ;Game data .loop lda #$F0 ;2 2 Load a mask and RAM2,x ;4 5 Take the left nybble of the game data sta RAM1,x ;4 9 and store it in the swap space lda (ROM),y ;5+ 14 Load the right nybble of the sound data and #$0F ;2 16 apply mask sta Temp ;3 19 ora RAM1,x ;4 23 Add it to the left nybble of game data sta RAM1,x ;4 27 This byte is done. Game data in left nybble, sound in right. ;lda (ROM),y ;5+ removed ;and #$0F ;2 removed ;sta Temp ;3 removed lda RAM2,x ;4 31 and #$F0 ;2 33 ora Temp ;3 36 asl ;2 38 adc #$80 ;2 40 rol ;2 42 asl ;2 44 adc #$80 ;2 46 rol ;2 48 sta RAM2,x ;4 52 ;left nybble of sound data is in right. dex ;2 54 dex ;2 56 dey ;2 58 bpl .loop ;2/3 60/61
×
×
  • Create New...