Alan Wake EP16: Product Placement

By Shamus Posted Friday May 18, 2012

Filed under: Spoiler Warning 195 comments


Link (YouTube)

So… we’re watching a television commercial for a videogame. This television commercial is taking place within the context of a book, all of which is inside an actual videogame, and which is now in our Let’s Play. So I guess Alan wake wrote a Verizon wireless commercial into his book? So do we blame him?

You know, I don’t really have a serious problem with in-game advertising as long as it’s seamless and not mood-breaking. The television ad was not seamless, and it was mood breaking. By putting it in the middle of this scene that was (or aspired to be) full of tension, it yanked me out of the game and made me resent Verizon. I don’t mind if Peter Parker drinks a coke. I do mind if he drinks a coke while Uncle Ben is bleeding out on the sidewalk. Product placement should never conflict with the tone of the scene, or it will ruin both the scene and the advertisement.

This is especially egregious since we just finished a nice long segment where the ad would have been just fine, perhaps even a welcome novelty.

I’m not just saying this because its an ad for a giant corporation. Even if this had been for a small company, an indie developer, or even a charity – this was the wrong time. This particular ad was a mistake that was a detriment to the developer, the advertiser, and the consumer.

I know some people point out that it’s the job of marketing to get you to notice a product, even with a negative emotion. But that’s just saying advertisers don’t have to be good at their jobs, which is obviously not true. Yes, crappy little companies harass us with shouting infomercials, disingenuous half-promises, or ear-murdering jingles. But generally the big brands (like Verizon) try to keep it clean. “There’s no such thing as bad publicity” only applies if you’re an unknown, fighting to be remembered. Once you’re a household name you’re not worried about coverage, you’re worried about perception. If someone is looking at two world-famous products, you don’t want to be known as the “irritating one” or “the stupid one”. I seriously doubt the market of “People who have heard of Sprint but don’t know about Verizon and happen to be in the market for a mobile phone” is particularly big.

A lot of this ties in with stuff Chris said in his retrospective on Sonic the Hedgehog and how Sonic was marketed next to Mario. Check that out if you missed it. Also Penny Arcade mentioned this last week, in relation to the brand placement in Draw Something. I’ve never played it myself, but I understand that this was a conversation that people were having.

 


 

Alan Wake EP15: What Episode is This Again?

By Shamus Posted Thursday May 17, 2012

Filed under: Spoiler Warning 82 comments


Link (YouTube)

Josh is discovering an inordinate supply of haunted furniture. For the record, I have yet to see a single physics glitch or take damage from scenery. (Deliberately hostile items excluded.)

What episode was this again?

 


 

Project Octant 9: Data Structures

By Shamus Posted Thursday May 17, 2012

Filed under: Programming 50 comments

I’m still working on the project. The stuff I’m working on now is a little boring and would mostly be a re-hash of stuff I’ve discussed before. So rather than do that, let’s talk about data structures.

octant9_2.png

Remember the little red cube. We’ll see him again later.

When a programmer sits down to write some software, the question comes, “How will I represent this problem in code?” This is actually one of my favorite parts of the job. (Or hobby, in this case. Unless you’re hiring? Do you want to fund development of this project? It has no gameplay, no plan, no support, and it doesn’t even work yet. Let me know if you’re interested!) If I need to store a historically important date like August 24, 1971, then there’s a lot of ways I could do it. I could store it as a text string: “August 24, 1971”. But then it would be hard to do math on it. (Say, to calculate how long it’s been between then and now.) I could store it as a group of three integers: 8, 24, and 1971. I could store it as the number of seconds elapsed since January 1, 1970: 51,840,000. The latter is great for doing math (and is actually how most systems store time internally) but it means you have to do a messy conversion when you want to display the date to the end user. Because if you display a date as 51,840,000 then the end user will find you and burn your house down.

What method will be fast? What will take up the least memory? What will make for clear, readable code? These are questions that programmers love to ponder before coming up with the wrong answer and making a mess of things.

Which brings us back to the problem of storing large tables of data.

octant9_5.png

We look at this and see a table. But internally, computers don’t “do” tables. They’re not really into 2-dimensional kind of stuff. Computer memory is a long, long line of values. If you’ve got four gigabytes of RAM, then you’ve got four billion little memory addresses in a single row, and it’s up to the programmer to make sense out of them.

Continue reading ⟩⟩ “Project Octant 9: Data Structures”

 


 

Alan Wake EP14: Stabbed in the Brain

By Shamus Posted Wednesday May 16, 2012

Filed under: Spoiler Warning 95 comments


Link (YouTube)

The headache stabbed me in the brain. And then I wrote a novel. Sounds about right.

Let’s see: Goofy puzzles. Occasionally awkward dialog. A wall between story and gameplay. A seemingly boring jerk for a protagonist. Repetitive foes. Terrible lip sync. Checkpoint saves.

We’ve accused Alan Wake of all of these, and I don’t think we’re wrong. But I think all of those problems are even worse in Silent Hill 2, which I still regard as one of the more powerful games I’ve experienced. I’m still gnawing on this, and I can’t speak for the rest of the cast, but I suspect that if the game had connected with me on an emotional level (dread, sorrow, anger, whatever) then I wouldn’t be focusing on these problems.

 


 

Alan Wake 13: Is Your Refrigerator Flying?

By Shamus Posted Tuesday May 15, 2012

Filed under: Spoiler Warning 142 comments


Link (YouTube)

“As I approached the Spoiler Warning I saw it was covered in dark shadows. The shadows blocked out the light so I could only see darkness and shadows. It was terrifying. After gathering up some batteries and watching half an hour of crappy television, I approached the darkness and drew near to the edges of the dark shadows that blocked out the light, making things darker and spookier.”

 


 

Project Octant Part 8: The Time-Hole

By Shamus Posted Tuesday May 15, 2012

Filed under: Programming 138 comments

So let’s talk about data structures. I’ve mentioned way back at the start of the project that there are certain costs to using an octree. An octree will make interfacing with ALL blocks a hundred times faster but make dealing with a specific block several times slower. I’m curious how…

Hang on. My program has been behaving oddly recently. It’s like it will suddenly stop building new blocks and I’ll end up stuck on this island floating in empty space. I’ve got the program set to aim for 60fps, and if one thing starts eating too much CPU then the block-building gets choked off. Let’s see where these CPU cycles are going.

I add a little benchmarking loop. Right now there are just five systems running:

Continue reading ⟩⟩ “Project Octant Part 8: The Time-Hole”

 


 

Project Octant Part 7:Slopes

By Shamus Posted Monday May 14, 2012

Filed under: Programming 97 comments

Now that we have a world based entirely around the idea of cubes, you know what we need? Slopes. This is something that’s been on my mind for ages. I’ve run around the Minecraft landscape and wondered, “What would this look like if the cubes could slope to form beveled outlines?”

octant6_14.jpg

Slopes aren’t really a foreign idea to an octree-based world. Minecraft has steps, which are basically slopes for the purposes of blocking light (they don’t) and collision. I want to take this one further and make slopes a part of the natural landscape. Like a lot of the stuff with this project, I’m not sure how well this will work out.

The trick here will be that the software needs to be able to look at a landscape and figure out which blocks should be turned into ramps, which ones should be turned into corners, which ones should remain cubes, and which way the slopes should face.

First, I need to set some parameters:

Continue reading ⟩⟩ “Project Octant Part 7:Slopes”