Category: Name That Game!

Name That Game 28!

Okay, I’m just plain old cheating this time.

Guy in a cave with a jetpack.  Wow, that's specific.

This game was never released for the PC. It was released for the Apple II, Commodore 64 and Atari 800.

But it’s a special game so I’m making an exception.

Warren, I am hereby unretiring you, because you’re probably the only person to have any chance to get this one 🙂

Can anyone tell me what game this is, who developed it, and why it’s special?

EDIT: Okay, nobody got it. I guess I’m not that surprised.

The game is Caverns of Callisto, developed by Chuck Beuche. It is significant because it is the first game Origin Systems ever published, beating out Ultima III by about a month.


Name That Game 27!

As you can probably tell from the screenshot, this game is old. It’s a PC conversion of a game that had its heyday on the Apple II.

Jumpman!

Name and developer, please. Your prize: a free one-year subscription to this very blog!


Name That Game 26!

Today’s game was released on PC, Playstation and Sega Saturn. If you don’t know who made it, the answer will probably surprise you.

What could it BE?!

But someone out there knows, I’m sure! Name and developer, please.


Name That Game 25!

Woohoo! Twenty-five Name That Games! I’m quite surprised that I’ve been able to keep this up for this long.

This week we’ve got a game that I personally bought on the recommendation of a friend…and then absolutely hated. It didn’t run well on my computer and I don’t think I ever fully understood the mechanics of the game.

But I’m sure someone out there played it, enjoyed it and remembers it, so here it is!

Donkey Kong!

Name and developer, please.


Name That Game 24!

This one will be easy.

Sonic!

I am personally very sorry that I never got a chance to get into this series of games, as it appears to have been a worthy successor to Wing Commander and Tie Fighter.

Name and developer, please. If you’re the first to get it right, I’ll name one of my villagers after you! Seriously!


Name That Game 23!

And we’ve got a new game!

That's got to be that game based on the movie of that book.

This game was good. You can tell from the style that it’s an early graphic adventure, though I won’t give any hints by telling you who published it. But like most graphic adventures of its day it was quite hard but very rewarding. It spawned an excellent sequel which in turn spawned an abysmal final chapter.

Name and developer, please! If you’re the first to get it right, I’ll totally share my muffin with you. Split it right down the middle. And it’s butter rum!


Name That Game 22!

Huh…why do I smell cheese?

Oh.

Commander Keen!  My favorite!

Now, this game isn’t quite as bad as some of the others I’ve presented, but Lord knows, it wasn’t good. I’d suggest that it might be a difficult one to guess, except that I know I’ve got at least one reader that will recognize it right away, and will probably hate me for the reminder 🙂

Name and developer, please. Your reward will be to have your name written in the stars, as soon as such star-writing technology becomes commercially available.


Name That Game 20!

I have noticed that I tend to present screenshots from around the 1996-1997 era of PC gaming, and this one is no exception. I played this game and enjoyed it but I think what I enjoyed were the production values. The game had an excellent intro and good voice work but the actual game itself was hard. I never got anywhere near finishing it.

Hmmm...Eye of the Beholder, maybe?

Name and developer, please!


Mighty Acorns

The screenshot I presented yesterday was a visual representation of the galaxy map of the original Elite. I generated it myself from the game data.

The Classic Elite Galaxy.

So why wasn’t such a map actually available inside the game itself? Surely providing such a map would have been very helpful to the player.

The answer is because in order to draw such a map and make it interactive, you would have to have the entire dataset for the galaxy in memory at once, and Elite couldn’t do that.

The designers of Elite, Ian Bell and David Braben, had a problem. The machines they were designing Elite for had at most 16k of RAM. One of the premises of Elite was that you were exploring a large section of the galaxy, one 256×256 units in area. This galactic sector had 256 star systems in it. Each star system would have data for its own unique name, tech level, economic level, government type, population level, productivity level, price for each trade good, and even a couple lines of text describing the most interesting aspects of the system. Each star system required four 16-bit values for this data. Thus, storing the entire galactic map would have required 2048 bytes of data – 2k, or 1/8 the amount of total space usable by the game. And when you’ve also got ship data to store and a 3D engine to run that’s just not good enough.

But Bell and Braben didn’t need access to the entire galactic data set at once. They typically only needed the data for the current star system the player was visiting.

Realizing this allowed them to solve the problem through the use of procedurally generated content. They started with three sixteen-bit numbers, which could range from 0 to 65535. These were called seed0, seed1, and seed2, and the values for the original Elite galaxy were 23114, 584 and 46931. These were not generated but were stored in code.

They then created a function called “tweakseed” that would create new numbers based on the existing ones. This function would also push the existing values “up”, getting rid of the oldest one and putting the new one into seed2. Here’s the C version of tweakseed from Bell’s Text Elite sources:

void tweakseed(seedtype *s)
{
    uint16 temp;
    temp = ((*s).w0)+((*s).w1)+((*s).w2); /* 2 byte aritmetic */
    (*s).w0 = (*s).w1;
    (*s).w1 = (*s).w2;
    (*s).w2 = temp;
}

Thus, before the first run of tweakseed, the seeds would have their initial values:

seed1 == 23114
seed2 == 584
seed3 == 46931

Running tweakseed once would generate a new seed, 5093, and the values would then look like this:

seed1 == 584
seed2 == 46931
seed3 == 5093

Since these values were generated by a function, they were predictable. They were random but in a controlled fashion. The game would use four seed values for each planetary system; thus, if the game needed the data for star system 113, it could just run tweakseed 448 times and then use the next four seeds as its data. The data would always be the same; thus, star systems would stay put. “Jumping” to a new star system was simply a matter of clearing out the data for the previous star system and replacing it with the generated data for the star system the player was jumping to.

Thus, these three numbers and this one small function represented an entire galaxy inside Elite. And as as if that weren’t enough, it didn’t just represent one galaxy. By changing the three starting seeds you change the entire galaxy. Since the three starting seeds could range from 0 to 65535 each, this formula could generate 281,474,976,710,656 galaxies. And initially Bell and Braben were going to allow the user to input their own seeds so that each player could play in his own private galaxy. They were overridden by the publisher, who felt that it was a bad idea to emphasize the fact that the galaxies were random. So Bell and Braben chose eight seed sets to represent the eight galaxies of the classic Elite Universe.

Procedurally generated content is all the rage nowadays, but it’s a very old concept. (As is sandbox gameplay, something Elite also pioneered decades before Grand Theft Auto III.) The interesting thing is that nowadays we are looking to generated content for exactly the opposite reason Bell and Braben did. Bell and Braben used generated content in Elite because they didn’t have the space to store their entire dataset at once. We are looking to generated content because we’ve got so much storage space that we can’t possibly hand-create enough content to fill it.


Name That Game 19!

And now I’m just being completely unfair.

Duke Nukem?  Is that you?

How so? Well…because this screenshot never actually appeared in the game in question. That’s right…I’m asking you to name a game from a screenshot that isn’t actually from the game.

But I don’t feel too bad because frankly, I’m pretty sure someone will come up with the name anyway. You guys are crazy like that.

Now…why am I doing this? All will be answered tomorrow.