Jump to content

Gemintronic

+AtariAge Subscriber
  • Posts

    11,189
  • Joined

  • Last visited

  • Days Won

    35

Posts posted by Gemintronic

  1. Feedback is not really feedback when it comes to eBay. If someone provides average service they shouldn't expect a comment whatsoever yet sellers demand feedback. Not because they really want feedback but because it means something else on eBay. It's a false measure of a seller as it's expected. No buyer can trust it as such.

    • Like 1
  2. Would you be peeved if I made an Atari 2600 or Sega Genesis homage to Get Lost! I'll give credit where credit is due, of course.

     

    I'd call it "Super Lost" or something :)

  3. Like I said, sometimes it's just a matter of a second pair of eyes.

     

    Hey! Did you see the topic where I "converted" Bataris 4-way scrolling Rally-X demo to work with modern bB versions? I hope you can take a look and see how it could be used. I could picture a Super Mario Bros 3 or Super Pitfall 4-way scrolling platformer once Bataris old code is figured out.

    http://www.atariage....e/#entry2566587

  4. Variable jumping is when you can jump higher or lower depending on the length of time you depress the jump button.

     

    Also, did you see in this topic I got Bataris 4-way scrolling demo working in the latest build of bB?

    http://www.atariage.com/forums/topic/166157-search-for-bataris-4-way-scroll-examplegame/#entry2566587

     

    With the proper changes we could make a proper platformer with levels bigger than one screen at a time!

  5. I traded for an Amiga 500 and then traded it off again. My failure was A. My monitor for it dead and B. it had no built in HDD. Floppy disks are a pain and they wear out.

     

    If I was a little more smart I'd have bought a scan doubler and compact flash interface and kept the dang thing. Nowadays I have a Minimig.

  6. Most of my gaming is on emulation of some sort. I mostly whip out my 2600, Genesis, SNES and NES only for debugging games. For each small change in a game I use PC based emulators. For entertainment and research I use portable devices like the Dingoo. If I get the time to play at home the Dingoo also has TV out and a wireless joystick.

     

    One of my best investments was the Retrode. With it I was able to back up my entire Genesis and SNES library. I bought an adapter for 2600, GBA and N64 games but I've had no luck with those.

  7. Andrew Davie was already kind enough to author a tutorial on the task scheduling. I'm just not sure about the graphic techniques used. It seems reminiscent of "chronocolor" demonstrations in the past. If one wanted to reproduce the tile engine is that a good place to start (by looking at other chonocolor examples)?

  8. @theloon is yours just supposed to be white blocks moving around up in the top left?

     

    Ya man! rand&3 gives a random number between 0 and 3. I give the variables xpos (hortizontal playfield position) and ypos (vertical playfield position) a number between 0 and 3. I then use the pfpixel command with those xpos and ypos to place a playfield pixel. When I specifiy flip it reverses whatever piayfield pixel is at that location.

  9. I thought I'd ask because the Batari Basic Command Reference doesn't say yes or no.

     

    I tried adding

     

    inline 6lives.asm

     

    or

     

    inline 6lives_statusbar.asm

     

    and made sure to dim the stuff documented in the bB command refernce. Yeah, I also added the lives: sprite data.

     

    Doesn't seem to work with multi-sprite. Can anyone confirm?

     

    UPDATE: The score kernels by CurtisP were confirmed by acousticguitar not to work with multi-bank. If the score kernel that comes with bB is related I bet they too are incompatible. Still, would be nice to get a sanity check.

  10. Very cool. Almost what I imagine a Super Pitfall back-port would be.

     

    I think you could change the option text to playfield pixels (check-boxes) to avoid flicker. Even with the phosphor cheat in Stella it flickers badly. You could also use both sprites and have a set of 4 off/on graphics. You know, on/on on/off off/off off/on. Zero flicker and a little wasteful graphic data.

     

    Variable jump is a nice thing. Maybe make it so?

     

    How are you displacing that first digit in the score? That's awesome!!! Please tell :)

  11. You guys could be the first to enable a new generation of tile based homebrew. :)

     

    On the other hand, Boulder Dash may end up being the ONLY tile-based game released on the platform.... ever.

     

    Is the source too tied into the specifics of Boulderdash? Or, are you saying there's not enough assembly coders out there to carry the torch? Being the first and only sounds like a pretty lonely place.

  12. The people who will buy this:

     

    A. Want to own a new Jaguar game

    B. Like the extra features (BJL loader) of the cart

     

    That wont change even if the developers get kidnapped and put on a pirate ship full of pirates and ninjas each stealing a cart from eachother. Nothing has changed in my view.

     

     

  13. rem Compiler Options
    set smartbranching on
    set romsize 4k
    
    rem These are basic settings for a simple game. smartbranching never hurts. We don't need multi-bank so 4k.
    
    rem Declare variables
    dim xpos = a
    dim ypos = b
    
    rem bB doesn't always work right with temp variables and doesn't like alot of caclulations on one line. We're gonna use up two variables for the playfield pixel position.
    
    rem Startup code
    init
    COLUPF = $0E
    
    rem Put code here that should always run before the main program begins. In this case I'm setting the playfield pixel color to white.
    
    rem Main loop
    main
    xpos = rand&3
    ypos = rand&3
    pfpixel xpos ypos flip
    drawscreen
    goto main
    
    rem Like I said, bB wont let us do pfpixel temp1 temp2 or lots of calculations like pfpixel 0 (rand&3) flip so we have to break it down.
    

×
×
  • Create New...