How to simulate Valve’s Steam Cloud with Live Mesh (Updated)

November 7th, 2009

Valve recently announced that their Steamworks SDK would include a feature called Steam Cloud in a future update. What Steam Cloud does is implement my own most-wanted feature – a way to keep saved games in sync across multiple PCs. (At one point I even thought I would write my own software, registering steamsync.com.)

In any event, it’s unlikely that Steam Cloud will be back-ported to many (if any) existing titles on Steam. That means I still need a solution for keeping my Peggle save file in sync between my desktop and laptops. :)

So if you’re a Live Mesh user, here’s how keep some of your PopCap Games save files in sync on Windows Vista:

Amazing Adventures: The Lost Tomb %ProgramData%\SteamPopCapv1005
Bookworm Deluxe %ProgramData%\Steam
Bookworm Adventures Deluxe %ProgramData%\Steam
Bookworm Adventures Volume 2 %ProgramData%\Steam
Braid %AppData%\Braid
Mystery P.I. – The Lottery Ticket %ProgramData%\SpinTop Games
Mystery P.I. – The Vegas Heist %ProgramData%\SpinTop Games
Peggle Deluxe %ProgramData%\Steam
Peggle Extreme %ProgramData%\Steam
Peggle Nights %ProgramData%\Steam
Plants vs. Zombies %ProgramData%\Steam
Puzzle Quest %HOMEPATH%\Documents
Torchlight %AppData%\runic games\torchlight\save
World of Goo %LocalAppData%\2DBoy
Zuma’s Revenge (This doesn’t seem to sync saved Adventure mode sessions) %ProgramData%\Steam

Why “Effective”? Well, you could mesh individual save folders but I prefer to keep things simple. It doesn’t hurt if one of the meshed devices doesn’t have all of the same games installed as the others.

image

techknight Uncategorized ,

Here is where to get CDisplay

July 19th, 2009

Now that GeoCities is closing, the original site for David Ayton’s CDisplay software is no longer available. However, if you check the Wayback Machine’s archive, you’ll see that install files have been hosted on my server for several years.

I plan to continue hosting this file indefinitely, so as always, you can download CDisplay 1.8 here: http://cdisplay.techknight.com/setup.zip

techknight Uncategorized , ,

Bootleg Ms. Pac-Man

March 12th, 2009

With the closing of Funland last year, Union Station may have Toronto’s last downtown arcade. The games are mostly crap, but there is this one bootleg Ms. Pac-Man machine with alternate mazes:

 

If you aren’t familiar with the mazes, you can see that something is wrong because the bonus fruit travels through walls!

techknight Gaming , , ,

Game Release: Cannon Zero

March 7th, 2009

This is my final version of the Cannon game. Cannon Zero has these changes to the engine and gameplay:

  • New graphics
  • Sound effects
  • Large 1280×720 playfield
  • High score display and loading/saving
  • Player is destroyed when the target crosses out of bounds at any time, instead of just the bottom of the screen
  • Various changes to the target’s angle and speed of decent
  • Projectiles are no longer fired unless the mouse button has been released from the previous click

The score display was implemented using the SpriteFont class and the Metal Lord font from Larabie. (The Larabie fonts are free for personal and commercial use. Found via this post on the XNA Creators Club forum.)

In the notes for Cannon III I said that I would take a look at using an Xbox 360 controller instead of the mouse… This kind of broke the quick movements necessary to play the game so Cannon Zero is mouse-only.

Download

Click here (extract and run setup.exe)

Screenshots

image

image

Video

techknight Game Development, Learning , , ,

Random Album Generator

March 4th, 2009

Saw a fun album cover generator on DadHacker just now. It takes random text from Wikipedia and a photo from Flickr and makes an album for you.

Here are my favourites so far:

image

image

techknight General , ,

Cannon III

March 1st, 2009

Cannon III is complete. Just as Cannon II borrowed a lot from Cannon I, this game reuses code from Cannon II except now we’re using the XNA framework. The assets file provided by 3D Buzz contained some enhanced graphics labelled XNA, so I used those instead of the boring default sprites.

Here’s a video of Cannon III in action:

That wraps up XNA Xtreme 101 Volume 1. Before I move on to Volume 2, I’m going to make my own final version of the Cannon game. Probably with new graphics, sound support, and Xbox 360 gamepad support. I’d also like to fix the issue with CheckFire() being called too quickly – which is causing the projectile to be fired on BeginGame() and ResetTarget().

techknight Game Development, Learning , ,

Blocking telemarketers and scammers with the iPhone

February 24th, 2009

Recently I used QuickPWN to jailbreak my iPhone, and one of the great tools not available in the official App Store is iBlacklist. As other Canadians know, there’s been an unfortunate increase in telemarketing calls since the National Do Not Call List went into effect.

With iBlacklist, I just add a number to the blacklist, choose an action (auto-hang-up, straight-to-voicemail, etc), and I never have to receive an unwanted call or SMS again. The application keeps a log of what it has blocked:

image

That’s three unwanted calls in the last few days that I never even got a ring for! (According to 800notes.com, this particular caller purchased my information from a credit card company.)

techknight Gadgets, General , , ,

Simple XNA Application

February 23rd, 2009

One quick introductory XNA project before getting into Cannon III: The Simple XNA Application. It’s just a new version of a bouncing ball demo that was originally created as a regular Windows app:

image

It looks like the lessons could get a little tricky, as they were created with the XNA 1.0 Refresh. Version 3.0 is the current release, and I can already see that the content manager is structured differently. No problems so far though.

techknight Game Development, Learning ,

Cannon II

February 22nd, 2009

Cannon II is done now. It’s pretty much Cannon I, except using a (mostly) proper game loop and custom classes.

For fun I’ve changed the graphics and added sound effects using SoundPlayer from System.Media. I used a tool called sfxr to randomly create the sounds:

image

The graphical changes are the very worst in programmer art, but what the hell… Here it is in action:

Also, while I was looking for something else, I came across this tool for generating animated explosion sprites: Explosion Generator. Might be useful later.

techknight Game Development, Learning ,

Cannon I part 2

February 19th, 2009

That’s the end of Cannon I. The game is now fully playable with a title screen, lives counter, and increasing difficulty.

Here’s a video of it in action:

techknight Game Development, Learning ,

Cannon I

February 19th, 2009

For the second game project in 3D Buzz XNA Xtreme 101 we’re writing a simple target-shooting game called Cannon. From a single initial design, the game will be implemented three times. First as a basic WinForms application, then as a more complex one with custom objects, and finally as an XNA framework game.

The mechanics of the first implementation are complete, with the rest of the gameplay to come in the next lesson.

The objects in Cannon I are PictureBoxes loaded up with some simple graphics supplied by 3D Buzz. Here is the player ship firing on the moving target:

image

techknight Game Development, Learning ,

Hyperion part 3

February 14th, 2009

Last week I completed the Hyperion lessons, leaving me with a finished engine and basic game about rearranging some objects into the correct rooms.

I worked a little on making my own original game with the engine, but in the end I wasn’t inspired. As much as I have fond memories of early text adventure games (Scott Adams’ Adventureland, Douglas Adams’ Hitchhiker’s Guide to the Galaxy), it doesn’t seem like I have anything to bring to the table. Plus I’d rather get on with the XNA lessons.

I added a couple of things to the engine before I finished though:

  • Lots of command aliases like “get” or “take” instead of “pickup”
  • Directional commands are implemented differently from the way that 3D Buzz guys did it
  • Partial text matching for items so that you can “drop gre” instead of “drop green ball”

image

image

So, that’s it for Hyperion. On to the next block of lessons.

techknight Game Development, Learning ,

Combined blog complete

February 10th, 2009

The combining I mentioned recently is now complete. The old URL (www.gameslifeandstuff.com) will now forward here. Unfortunately the comments were not able to be imported along with the posts that I chose to save, but from here on the data should be more portable.

I’ll work on a proper Wordpress theme soon.

techknight General

Comté cheese

February 6th, 2009

I first tried Comté cheese at Matt and Dani’s place. Apparently it’s cheaper in Kensington, but this little block of heaven from St. Lawrence Market was totally worth it.

Alex Farms cheese shop

Comté cheese

Yum!

techknight Food

Combined blog

February 6th, 2009

Instead of continuing to have two separate blogs, I’m going to rename and backfill this one with selected posts from gameslifeandstuff.com.

The RSS feed might become temporarily cluttered as a result.

techknight General