Jump to content
IGNORED

Entry 2015: Alligator Swamp


Recommended Posts

No, I started with the VIC-20 but remember the Sharp models from computer magazines at the time (1983-84). Also in more recent times browsing scanned Japanese computer magazines from those days, I realize how important brand Sharp was on its home market, with NEC and a bit of Fujitsu. The fact that Nintendo went into agreement with Sharp for production capacity and in return Sharp was the only manufacturer who were licensed to use Famicom technology in some of their own products (and got to release Mario games for their own computers, post the US "crash") also says something about their impact.

 

 

 

Very interesting indeed. As many other seminal enterprises during the early days of computing, Sharp does not get enough attention in the annals of history; in spite of their significant contributions. Thanks for sharing. :)

 

 

It strikes me now that in the original game, keys 1-4 move the monkey to the left at different speeds and 6-9 move it to the right. While the Intellivision doesn't have an analogue stick, I suppose this blends in well with smoother movement, if one would be able to accelerate the monkey sideways the longer you hold the direction. Eventually I will try some different implementations and see what feels best.

 

That can be implemented on the Intellivision, and in fact I believe some games do exactly that. All you have to do is keep a counter of how long the disc was held, in frames. Alternatively, you can keep a counter and increment the velocity after a pre-determined number of cycles occur. In crappy pseudo-code:

// Constant values
cycles_to_wait = ??;
acceleration   = ??;

count = 0;
velocity = 0;

while (game_cycle) {
  // Handle disc press
  if (disc_pressed == true) {

    // If the threshold is met, accelerate
    if (count % cycles_to_wait) {
      velocity += acceleration;
    }

    // Keep counting
    count++;

  // Handle disc release
  } else if (disc_press == false) {
    // Stop or decelerate and reset counter
    velocity = 0;
    count = 0;
  }
}

This can give the game a more natural feel, although I still think that a smoother parabolic trajectory is the most important thing.

 

-dZ.

  • Like 1
Link to comment
Share on other sites

In the mean time, I found a YouTube recording of the Sharp game:

 

The PET port reduces the number of trees from 3 to 2, but adds tree trunks:

I love these kind of digital archaeology posts, The PET was the first computer I ever touched, way back when I was around 12 or 13. Mostly played Space Trek or whatever it was called. Thanks.

  • Like 1
Link to comment
Share on other sites

  • 1 year later...

I just submitted the latest version to the competition email. It adds a score counter, lives, diving turtles, alternating levels and some silly sounds, but none of the polishing elements. We'll see if I keep working on this after the compo has ended. It means comments still are welcome, but I won't do anything about them right now.

 

attachicon.gifalligator0.04.bin

 

 

Is this the latest version?

 

thanks!

Link to comment
Share on other sites

  • 2 years later...

I haven't touched a byte of this old entry, but I just found a scanned issue of PCW 12/1980. The Sharp MZ-80K listing is on page 140 and is credited to Norman Webster from Sharp UK which explains why it says "Listing courtesy of Sharp Electronics". He had a MZ-80K game called Bouncing Ball published already in PCW 11/1980, possibly due to his position at Sharp. I have found he was a radio amateur with the call sign G8TMS and also worked on a solution to have the MZ-80K transmit and receive radio teleprinter signals.

 

https://worldradiohistory.com/UK/Personal-Computer-World/80s/PCW-1980-12-S-OCR.pdf

 

Exactly who A.P. Todd and D.S. Todd were and which improvements they made to Norman's listing in July 1981, I haven't checked.  In the Sharp Club April-June 1981 there also is a Bill Murray credited for this very same game... (most probably not related to Ghostbusters, and a French forum seems to have mistaken David "8-bit Guy" Murray for Bill.

  • Like 2
Link to comment
Share on other sites

  • 5 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...