fuzzy notepad

Atom feed [release] release

[release] I made a Doom level

Yes, dear readers, I have a confession to make. Despite spending 29,000 words explaining why and how you should make a Doom level, I’ve yet to actually publish one myself.

I’ve been… orbiting? the ZDoom community for over a decade, but only really contributed in the form of minor wiki edits and occasional advice. I started a good few maps when I was a teenager, but I tended to get bogged down in making some complicated contraption work, and then get bored with the whole idea and lose interest.

More recently I’ve actually made a few maps that got as far as having an exit (!), but I never really finished them, and I haven’t published them anywhere.

So when the Doom Upstart Mapping Project 2 was announced, with the goal of just getting something done with the short time limit of a week, I figured I should give it a shot. And I did. I spent six straight days doing virtually nothing but working on this Doom map.

Results: pretty good! I’m pretty happy with it, and a few people have played it and enjoyed it. I put a lot of thought into it — or tried, anyway — and have a lot to say about it, so this is my developer commentary.

I’ve described the course through the map as I go, and I’ve tried to include some context for people whose knowledge of Doom is only “you shoot monsters”, so I hope it’s at least a little accessible. It’s really long, though. Again. Sorry. Not actually sorry.

[release] Mario Maker: …

14DC-0000-01ED-C104
Difficulty: fairly easy
Quality: ★★★★★
Secrets: —

I removed the music and only used monochrome obstacles, with very few actual enemies. No pickups, no secrets. It’s short, linear, pretty easy, entirely thematic.

The result is interesting.

[release] Mario Maker: The Works

ACD6-0000-0198-668D
Difficulty: fairly easy
Quality: ★★★★★
Secrets: 🍄🍄🍄🍄🍄🍄

This is great. I put a lot of effort into polishing it. I even set it aside for a while because I wasn’t happy with it, then came back and fixed it.

It’s fairly long, but doesn’t have any particularly tricky parts. Pretty atmospheric, I hope. Not all of the 1-ups are hidden, and not all of the hidden details are 1-ups.

I don’t even want to say anything more about it; I feel like I’ll ruin it. Just play it.

[release] Mario Maker: Purgatory

BEA5-0000-0192-AF17
Difficulty: fairly easy
Quality: ★★★☆☆
Secrets: 🍄🍄🍄🍄

I had three hours left at the end of a night, and I decided to use them to speed-map a Mario level. Two hours later, I had this. It’s fairly simple and straightforward as a result, but still a fun quick romp.

The theme is fairly shallow: there’s a “heaven” overworld and a “hell” subworld, and you shift back and forth a couple times on your way through the level.

I watched someone try to speedrun it shortly after I uploaded it, and I was delighted to see that they managed to skip the hell area entirely. Seems appropriate.

[release] Mario Maker: Pipe Dream

1AA3-0000-0104-C7ED
Difficulty: easy
Quality: ★★★★☆
Secrets: 🍄🍄🍄🍄

I bumbled upon a pipe-themed level while playing 100 Mario Challenge, and decided I wanted to do one. Unfortunately I hit the warp pipe limit much earlier than I’d expected, so it’s only partially pipe-themed. Still, I’m pretty happy with it.

I keep trying to make levels that are easier, more interesting, and less linear, and I think this is the first time I really feel like I hit that mark. I only spent a few hours on it, too.

[release] Mario Maker: Mount Erebus

8A2E-0000-00FE-85D5
Difficulty: fairly easy
Quality: ★★★☆☆
Secrets: 🍄🍄A + trick to make the boss easier

There’s a story behind this.

I was bored and wanted to make a Mario level, so I asked Mel to pick a tileset. They said castle. So I made a castle level.

I didn’t say it was a very good story.

I’m a little unhappy that you can get hurt with little warning in a couple places, but I think it’s balanced out by how short the level is.

If you’re curious, this is named after a level from the original Doom, which in turn is named after the southernmost mountain on Earth.

[release] Mario Maker: Free Will

D161-0000-00FA-5905
Difficulty: entirely in your hands
Quality: ★★★☆☆
Secrets: 🍄🍄

I want to call this “experimental”, but then, aren’t all of these experimental?

Something I’ve been thinking about a lot lately is games where the plot isn’t actually necessary. The world isn’t ending, your life isn’t in danger, it’s just a fairly standard story. And the game never explains why the protagonist needs to do it. It’s just taken for granted that the protagonist wants to go through the story, because that’s how games work.

(I can’t actually think of examples of this off the top of my head, now, but I know I’ve run into it.)

Of course, players tend not to notice this, because the entire point of playing a game is to do the thing that the game offers. So sometimes that’s the only reason the protagonist wants to do it: because the player wants to do it. Because it’s a game, and if you didn’t do it, there’d be no point.

So.

Here is a completely trivial level. You can just immediately run to the goal. The point of Mario games is to reach the goal, right? There’s nothing stopping you here.

Or is the point to enjoy the experience of traversing a level? If you do that and enjoy yourself, even though none of it got you any closer to the goal, didn’t the level still serve its purpose?

Up to you!

[release] Mario Maker: Cookie Dough

00EC-0000-00DB-3CA7
Difficulty: fairly easy
Quality: ★★★★☆
Secrets: 🍄🍄🍄🍄

Vanilla Dome has a cool aesthetic and an unusual style — you navigate up and down through caverns, rather than mostly to the right as is common in Mario. I tried to capture some of that here.

This was the first time I tried to do any real narrative things with the detailing in the level. Not some grand coherent plot; just little hints that life is happening here and it’s not necessarily centered around you. I love that in games.

There are also quite a few branching paths, which is a little difficult to cram into Mario Maker where the world can only be two screens tall. Jamming in a lot of secrets made it even harder, but I managed. See if you can find them all! No backtracking required, I think.

There’s a boss battle at the end, though the solution is unfortunately not as obvious as I’d hoped. A surprisingly tricky problem is finding ways to force the player to actually beat the boss, rather than scurry past it. (I’m not sure anyone has picked up on what the boss is, either.) It’s a real shame, because it feels clumsily tacked onto the end of what is otherwise a pretty nice level.

Overall I think this could use a little bit more cohesion, but I’m pretty happy with it.

[release] Don’t use pickle — use Camel

Don’t use pickle. Don’t use pickle. Don’t use pickle.

The problems with Python’s pickle module are extensively documented (and repeated). It’s unsafe by default: untrusted pickles can execute arbitrary Python code. Its automatic, magical behavior shackles you to the internals of your classes in non-obvious ways. You can’t even easily tell which classes are baked forever into your pickles. Once a pickle breaks, figuring out why and where and how to fix it is an utter nightmare.

Don’t use pickle.

So we keep saying. But people keep using pickle. Because we don’t offer any real alternatives. Oops.

You can fix pickle, of course, by writing a bunch of __setstate__ and __reduce_ex__ methods, and maybe using the copyreg module that you didn’t know existed, and oops that didn’t work, and it’s trial and error figuring out which types you actually need to write this code for, and all you have to do is overlook one type and all your rigor was for nothing.

What about PyYAML? Oops, same problems: it’s dangerous by default, it shackles you to your class internals, it’s possible to be rigorous but hard to enforce it.

Okay, how about that thing Alex Gaynor told me to do at PyCon, where I write custom load and dump methods on my classes that just spit out JSON? Sure, you can do that. But if you want to serialize a nested object, then you have to manually call dump on it, and it has to not do the JSON dumping itself. There’s also the slight disadvantage that all the knowledge about what the data means is locked in your application, in code — if all you have to look at is the JSON itself, there’s no metadata besides “version”. You can’t even tell if your codebase can still load a document without, well, just trying to load it. We’re really talking about rolling ad-hoc data formats here, so I think that’s a shame.

But I have good news: I have solved all of your problems.

[release] Mario Maker: Tiny–Huge Island

A953-0000-0055-15BA
Difficulty: medium, has some annoying spots
Quality: ★★★☆☆
Secrets: 🍄🍄🍄🍄

I love any kind of parallel-areas gimmick, and since you can make large versions of basically any critter in Mario Maker, it was begging for this. It’s named for a world in Mario 64, which I played only briefly but found memorable anyway.

It’s surprisingly difficult to come up with puzzles that actually require large monsters, and even harder to come up with ones that require small monsters. In the end, I think all but one of the puzzles can be solved in either world, though one way is always considerably easier than the other. I like alternate solutions, and heavily dislike when game designers add obvious artificial roadblocks to seal off alternate solutions, so I’m fine with this.

There are some places that are a little harder than they ought to be, which is a shame, but it’s my most popular level nonetheless. I’m itching to make a sequel, but this was incredibly tedious to do, because you can’t actually copy anything across areas. All of it was done manually.

[release] Mario Maker: Spoopy Manor

CA39-0000-004B-FF52
Difficulty: slightly tricky, not in a good way
Quality: ★★★☆☆
Secrets: 🍄🍄 + “secret exit”

Boo houses are cool. Mario Maker adds a Boo house theme for the classic Mario tileset. Awesome.

I tried to make this moderately confusing and weird, as Boo houses ought to be. I think I may have overshadowed that a little bit with some annoying jumps into Boo circles, though. And unfortunately this predates checkpoints, though it direly needs one.

Still, I enjoy playing it just for the strange environment, so maybe you will too.

[release] Mario Maker: Test Flight

55A7-0000-0049-50DD
Difficulty: tricky, not in a good way
Quality: ★★☆☆☆
Secrets: 🍄🍄🍄

This is my first Mario level, hence the title. It… is not particularly great.

The concept was okay: you start out in what seems like a cheerful easy level, then you suddenly hit a wall. You have to go down a pipe to progress, and surprise! It’s not so cheery any more.

Unfortunately it’s a bit worse than “not cheery”; it’s cramped and kind of annoying. The original idea was actually worse than how it came out — I’d intended that you have to cross the entire second area, get a cape upgrade, and then backtrack without losing the cape. You need the cape to reach the exit, so if you lost it, you were screwed. I found out that you could actually skip all the backtracking pretty easily, and I was relieved enough that I left it in.

Suffice to say, I would do this very differently if I did it again now.