Gamefly: They Actually Have Games

By Shamus Posted Friday Apr 20, 2007

Filed under: Random 21 comments

I apologize if my game rental adventures are getting tiresome, but I think after heaping shame onto Gamefly yesterday it’s only fair to note that they did manage to ship me a couple of titles. On the way are Prince of Persia – Two Thrones, and Lumines. I also have another game on the way from an unexpected source, but I’ll write more about that later.

Thanks to everyone who posted advice on how to coax games out of the capricious Gamefly oracle. Their availability is still lacking, although not quite as shameful as it seemed at first glance. For those of you who know the service, perhaps you can advise on how I might accomplish the following:

Our account lets us have two games at a time. To wit: We get a game, and another one. The plan is to always have one game for the PS2 and one for the Nintendo DS. More to the point: One for the kids and one for me. This was a simple arrangement in Netflix – just stagger the titles in the queue. But Gamefly will ship pretty much randomly from the list. If not randomly, then perhaps they do so according to some inscrutable system which would require advanced cryptography and the the use of a supercomputer to decipher. The only way around this – to make sure that I get a title for the appropriate platform – is to clean out the list every single time I return a game and then re-populate it with titles only for the desired system. Aside from the hassle, this is an ugly kludge that sort of negates the purpose of having a list.

I started poking around, looking for alternative send-me-some-dang-games-in-the-mail-and-be-quick-about-it services after the silliness yesterday. Let’s see: There is GPlay, Gamerang, GameFly, GameznFlix, NumbThumb, RentZero, GottaPlay, and GameLender. I’ve also heard that Blockbuster rents games but I don’t know if that is a separate service or part of their movie rental business.

(An aside. Who came up with the name “Rent Zero”? That’s like naming a car “Drive Nowhere”.)

I’m suffering rather acute paradox of choice here. No matter what service I choose I’ll have this nagging doubt that I made the wrong decision. Just narrowing things down is hard. This helps a bit, but it seems like my demands about title availability are unique. The linked article compares the various services on numerous criteria, but title availability is never even mentioned.

I had no idea there were so many players in this game. Whatever happened to the classic two-party system of leader vs. challenger? PC vs Mac. VHS vs. Betamax. Coke vs. Pepsi. Ginger vs. Mary Ann. Will we go the route of safety with the established choice, or embrace the iconoclasm of the underdog? This we understand. But how am I supposed to pick a winner in a nine-sided battle? Can’t some of these guys save me some time by going out of business or buying each other out? Really, I would need some sort of glut of unexpected free time before I could investigate this properly. My most likely course of action is just to stay with Gamefly and then complain a lot. I don’t know if you could call that sort of behavior a solution per se, but it is a choice available to me.

 


 

Adequate Theft Auto

By Shamus Posted Thursday Apr 19, 2007

Filed under: Game Reviews 38 comments

I’m still working on Grand Theft Auto: Liberty City Stories.

I have a very strong love / hate relationship with the GTA series. On one hand, I love exploring a huge, open-ended city with lots to do. I love the freedom, the size, the running day / night cycle, the varied vehicles and other modes of transport, and the (usually) great music. On the other hand, I hate the missions, I find the characters repulsive, and the stories are frequently wearisome. I love everything about the game except the game itself. I hate the mandatory central story, and I love some of the optional stuff.

I wonder how widespread my view is. I can’t be the only one.
Continue reading ⟩⟩ “Adequate Theft Auto”

 


 

GamezNFlix vs. Gamefly

By Shamus Posted Thursday Apr 19, 2007

Filed under: Random 21 comments

So I want to rent games. There are two major services I’ve found so far. GamezNFlix and Gamefly. I’ve signed up for both so that I can properly compare. I will cancel one (or maybe both) before the trial runs out.

When it comes to price, GamezNFlix wins. They offer 3 games at a time for $17, as opposed to Gamefly’s 2 at a time for $22. No contest.

When it comes to availability, GamezNFlix wins. Everything that caught my eye was available now, as opposed to GameFly, where nothing I wanted was available. GameFly is either an appaling joke, a scam, or managed by fantastic morons. You have to wait for days for most titles, weeks for others, and even ones which seem to be available can jump to unavailable without warning.

When it comes to movies, GamezNFlix wins. GameFly doesn’t have any movies. (Although, it seems like they don’t have any games either.)

So in this little contest, Gamefly isn’t even trying. They offer an overpriced service that offers to ship you fewer games never. That’s a tough sell, no matter how much you’re charging.

Except…

Gamefly offers Nintendo DS and Game Boy Advance games, and GamezNFlix doesn’t. We own two Nintendo DS’s here, which can play both DS and GBA titles. This was a major selling point with us.

So what to choose? The service which doesn’t do everything I need, or the service which does everything I need, but has terrible service and costs too much?

Right now I’m leaning towards canceling both and giving up. Although, if you want to rent games and you don’t care about the DS, then without a doubt GamezNFlix is the way to go. I’ve only been a customer of Gamefly for twelve hours, and have yet to give them any money, and already they have managed to annoy me in numerous ways. It is the only task for which they have shown any enthusiasm or skill.

 


 

Gamefly: First Impressions

By Shamus Posted Thursday Apr 19, 2007

Filed under: Rants 29 comments

As I mentioned before, I recently picked up a Playstation 2. At the moment I only have one game, which has so far failed to impress me. I want to fill in my software library but I also don’t want to break the bank, which is highly breakable at the moment. I’ve seen a few ads for Gamefly, the service that lets you rent videogames through the mail and keep them as long as you like for a flat monthly fee. Like Netflix, only for games. It sounds like a good way to sample a lot of various titles in a short time, which is a good deal for me as I try to get a feel for what’s out there.

First impressions are everything, and Gamefly made a pretty abyssmal first impression on me. I ran through their list of PS2 titles, clicking on the various games I’ve seen go by over the last few years but never got a chance to play. Here is what my queue looks like:
Continue reading ⟩⟩ “Gamefly: First Impressions”

 


 

DM of the Rings LXXXIX:
Killing Time

By Shamus Posted Wednesday Apr 18, 2007

Filed under: DM of the Rings 143 comments

Aragorn is bored with the battle.

 


 

Does Not Compute

By Shamus Posted Wednesday Apr 18, 2007

Filed under: Random 31 comments

A bit of code-blogging.

I spent some of yesterday afternoon debugging a very mundane bit of code. Nothing special. A bunch of memory space was getting trashed, as poorly managed memory is wont to do. I picked through the code and found some appaling bugs. (Which I had written.) The full code was a couple of pages long, but the thing boiled down to this:

void DoSomething (void *thing_in)
{

    void       *thing1;
    void       *thing2;

    thing1 = malloc (sizeof (*thing_in));
    //Do some stuff with thing_in and thing1.
    thing2 = malloc (thing1, some_new_size);
    free (thing1);
    //Do some other, unrelated stuff. Then...
    memcpy (thing2, thing1, sizeof (*thing1));
    //now that i just got done copying a free'd block of memory to thing2,
    //I'll do some more stuff with thing2.
    free (thing1);
    free (thing2);

}

Now, the actual code had all sorts of crazy stuff going on between these steps that obfuscated the mistake, but at the heart of it this is what I was doing: I was free()ing blocks of memory more than once, and copying stuff from recently unallocated blocks of memory. Now, this in and of itself is not very remarkable. If you lose your head you can easily make a blunder like this. The thing is, it should result in a crash. What I’m doing above is programatic sepuku.

But in this case the program did not crash. At least, not every time and certainly not right away. Not only did it not instantly die when it executed this code, but it more or less did what it was supposed to, or failed in innocuous ways that weren’t readily apparent. It called this function several dozen times a day, and yet the program ran on like this for a span of nine months without anyone noticing something was seriously amiss.

There was another program that would restart this one in the event that it crashed. I don’t know how often that happened. I’m afraid to look. I’m terrified that I’ll discover my program ran like this for all that time, like a man going on and living his life without noticing that a couple of his major internal organs have been removed. This is not supposed to be possible.

The whole thing gave me the willies, really.

LATER: Edited the example to better show what the problem was.

 


 

Games Are Art

By Shamus Posted Tuesday Apr 17, 2007

Filed under: Video Games 45 comments

Roger Ebert made the assertion that videogames aren’t art. Demosthenes offers a rebuttal, which is so comprehensive that there is little for me to add. Jaquandor takes on the role of a cunning provocateur by soliciting my opinion on the matter.

But for people making the games-cannot-be-art assertion, I would issue the following assignment: Give me your definition of art. This is a difficult task, to come up with a description which would include all of the established and accepted forms of creative expression and yet somehow exclude videogames. It will require some degree of verbal contortions or qualifiers which have no other purpose than to define around games.

It is strange to see Ebert (who I enjoy reading) dismiss games like this, although it doesn’t get me too riled up. For a while there were people who assured the rest of us deluded fools that Rock and Roll wasn’t music. Without exception this claim came from people who hated Rock music. The games-aren’t-art position is the same thing in another form. It’s coming from people who don’t play games and don’t care to. That’s fine. His position will go the way of the Rock-and-Roll haters in another generation. The only time I get heated up about this issue is when I see it in this context:

“[There is] no conveyance of ideas, expression, or anything else that could possibly amount to speech. The court finds that video games have more in common with board games and sports than they do with motion pictures.”

— U.S. District Judge Stephen N. Limbaugh Sr. (2002)

And here Limbaugh demonstrates his own art, which is the weaving of ignorance and apathy into the very fabric of our laws. I don’t care for the performance myself, but I have to hand it to him: The guy is good.
Continue reading ⟩⟩ “Games Are Art”

 


 
From The Archives:

Why I Hated Resident Evil 4

Ever wonder how seemingly sane people can hate popular games? It can happen!

 

If Star Wars Was Made in 2006?

Imagine if the original Star Wars hadn't appeared in the 1970's, but instead was pitched to studios in 2006. How would that turn out?

 

Grand Theft Auto Retrospective

This series began as a cheap little 2D overhead game and grew into the most profitable entertainment product ever made. I have a love / hate relationship with the series.

 

The Biggest Game Ever

Just how big IS No Man's Sky? What if you made a map of all of its landmass? How big would it be?

 

The Opportunity Crunch

No, brutal, soul-sucking, marriage-destroying crunch mode in game development isn't a privilege or an opportunity. It's idiocy.

 

Black Desert Online

This Korean title would be the greatest MMO ever made if not for the horrendous monetization system. And the embarrassing translation. And the terrible progression. And the developer's general apathy towards its western audience.

 

Silent Hill 2 Plot Analysis

A long-form analysis on one of the greatest horror games ever made.

 

Stolen Pixels

A screencap comic that poked fun at videogames and the industry. The comic has ended, but there's plenty of archives for you to binge on.

 

id Software Coding Style

When the source code for Doom 3 was released, we got a look at some of the style conventions used by the developers. Here I analyze this style and explain what it all means.

 

Shamus Plays LOTRO

As someone who loves Tolkein lore and despises silly MMO quests, this game left me deeply conflicted.