Posted on Leave a comment

Make sure to take advantage of Business Matchmaking at GDC 2018!

The 2018 Game Developers Conference is just two months away, and that means now is a great time for attendees and exhibitors to start arranging onsite meetings with each other using GDC Connect business matchmaking!

This popular online tool allows the majority of GDC attendees to identify, contact, and request and receive meetings with GDC exhibitors of all kinds, either in exhibitor booths or the special GDC Connect Lounge.

GDC Connect is available to all pass types except Expo, and Expo passholders can still upgrade to an Expo Plus pass to secure access to this popular meeting tool.

Once you’ve registered for GDC, your profile will be automatically created. Simply login, update your profile and start searching for meeting opportunities immediately. This personalized, easy-to-use tool allows you to search for connections by their job and company focus, and geographic location. Send meeting requests to create an on-site schedule that fits your objectives, and connect with potential partners!

Attendees seeking more information on the show’s session lineup should check out GDC 2018’s official Schedule Builder, which continues to add new talks every week.

And if you haven’t already done so, don’t miss your opportunity to save money by registering early — the deadline to register for passes at a discounted rate is next week — January 31, 2018! 

For more information on GDC 2018, visit the show’s official website, or subscribe to regular updates via Facebook, Twitter, or RSS.

Gamasutra and GDC are sibling organizations under parent UBM Americas

Posted on Leave a comment

Daily Deal – The Jackbox Party Pack 4, 40% Off

Total War Saga: Thrones of Britannia is Now Available for Pre-Purchase on Steam and is 10% off!*

Thrones of Britannia is a standalone Total War game which will challenge you to re-write a critical moment in history, one that will come to define the future of modern Britain. With ten playable factions, you must build and defend a kingdom to the glory of Anglo-Saxons, Gaelic clans, Welsh tribes or Viking settlers. Forge alliances, manage burgeoning settlements, raise armies and embark on campaigns of conquest across the most detailed Total War map to date.

*Offer ends at 10AM Pacific Time

Posted on Leave a comment

How MidBoss encodes a player’s game data in shareable ‘death cards’

Promoting a game by automatically embedding screenshots in social media sites is a common practice, particularly among developers whose games live on those social media platforms, as well as mobile developers.

However, Emma “Eniko” Maassen, of Kitsune Games, put a new spin on this for her indie roguelike MidBoss (not to be confused with 2064: Read Only Memories dev MidBoss), a traditional standalone PC game.

When a MidBoss player finishes a run—usually by dying—they can post a “death card” with the circumstances of their death or transcendence to Twitter. The embedded image doubles as a save files to allow other players to replay from the same seed or salvage loot from the failed run, since all of the information is steganographically encoded into the PNG image file.

Maassen sat down with Gamasutra to talk about the challenges and advantages of using stenography to share more than just text and pictures on social media.

Questions and answers have been edited for brevity and clarity.

Dead, to begin with

Where did the idea of MidBoss‘s death cards initially come from?

Emma “Eniko” Maassen: I like finding a place for old stuff I never really used in my projects. When we were working on the trailer for MidBoss, we came up with an idea to show parts of the game as trading cards in the trailer to show the volume of content in the game.

I made a card design for that, and that actually made it in the trailer. Around the same time, Alphabear was exploding on Twitter. And we’d been getting some feedback from people that they were sad there wasn’t a meta progression system, like in (for instance) Rogue Legacy.

I decided to use the moment of the player’s death since most runs end in death in MidBoss. The story that most players share with others when they talk about their experiences in roguelikes is how they died.

I realized that I could combine my [already-made] steganography library with the card design [from the trailer], make it shareable on social media like Alphabear, and came up with the grave goods system (using the cards to carry over items from your inventory to a new game) to soften the blow of not having meta progression.

You had already developed a steganography library before working on MidBoss?

I created a library to do image steganography while I was working on the in-game music instrument playing system for Shroud of the Avatar.

“I was playing Champions Online. A friend sent me their character customization settings, but it was a picture that I could load into the game. It was like magic, so I looked up how they could’ve done it and [first] came across steganography.”

Years ago, I was playing Champions Online. A friend sent me their character customization settings, but it was a picture that I could load into the game. It was like magic, so I looked up how they could’ve done it and [first] came across steganography.

[A couple years later,] Shroud of the Avatar was taking submissions for game content from backers, and one of their stretch goals had been a system where you can play instruments in game to make music. Mabinogi, which I used to play, and Archeage used MML files to do that. Lord of the Rings Online [and later Terraria] used ABC files. I [created] a framework that could parse the player-transcribed music for all of these games, to give me access to this wealth of playable music. (You can find the source code for the library on my Github.)

[As part of this project,] I created a library to do image steganography to be able to hide the music file data within a music scroll image with the actual notes printed on it. That experiment never went anywhere, though. I was working on this in my spare time and I just didn’t have the time to figure out all the intricacies of rendering the bars of music into an image to share.

I cleaned [this framework] up, made it open source, and submitted it [to Shroud of the Avatar developer Portalarium]. It took a while for them to get around to implementing it, but Richard Garriott mentioned how easy the library had been to integrate for them. I was awarded the Order of the New Britannia Empire, an actual medal they award to community members that perform outstanding contributions for the game. It was a very positive experience for everyone involved.

Encoding memorials with stenography

Can you walk through how your steganography implementation works in MidBoss?

It’s relatively simple. It takes the binary or byte data you want to encode and the RGBA color information of the image. Then it goes through all the bits in the data you want encoded and overwrites the least significant bit of each color channel to match. That means the colors will only ever be off by 1 from the original, which is imperceptible to the human eye. There’s 4 color channels or 4 bits of encoded data per pixel, so every two pixels represent one byte of the encoded data. Death cards are 405×506 pixels in size, so they can hold at maximum about 405*506/2 bytes, minus some transparent pixels, or about 100 kilobytes of data.

Programs don’t respect the values of the RGB channels for a fully transparent pixel, so I only put data in pixels that had a certain minimum alpha value so they weren’t completely transparent.

I also add a header with the text “BINDATA” in ASCII to the data so I can check if an image contains encoded data, followed by a 4-byte integer containing the length of the data payload in network endian, so that I know how much data there is to read.

What information is saved in a MidBoss death card?

MidBoss saves its game in a zip file that contains a number of XML files. I chose XML early on because I wanted the saves to be hackable [by players]. Inside the save zip is a “header.xml” file which saves everything about the game that isn’t specific to a certain floor. That means the game version, seed, game settings, how potions are discovered and which have been discovered, all of the player’s stats, abilities, forms, equipped items, inventory, etc. Even the stats that are tracked for that specific game.

I already had all of this information available so the easiest thing is to just store that information in the card, but the text takes up a lot of space. A save header for someone at the end of the game might be around 65 kilobytes; I don’t think I’ve ever seen one over 80 kB. Fortunately, text compresses really well, so I use the deflate algorithm to compress the data before encoding it into the death card image. Once you deflate the header, it’ll basically always be under 10 kB, and is usually between 3 and 6 kB.

Getting the images onto Twitter and back again

Once death card images are generated, how do you export them to social media?

I’m a PC only developer [and] I never wound up with enough time to add sharing functions to platforms besides Twitter, so my research focused on that.

I had to make sure to pick a format that would fit Twitter’s image sizes. I wanted the whole card to be visible without having to click on it, and I definitely didn’t want it to be resized. That’s how I came up with the height of 506 pixels, and the width was basically as high as I could get away with while still having the cards feel rectangular enough instead of feeling square.

It turns out that Twitter will re-encode a PNG image that has no transparent pixels as JPG instead, so the data becomes corrupted. That’s why the design for death cards always have some transparent pixels in the corners. As for any other platforms, I just hope that the transparent pixels and the small size gets around their image re-compression rules. (I tested death cards on Discord, and they worked there.)

Since I was only targeting Twitter, getting around those rules was almost easier than getting the image from the game up on Twitter and back into peoples’ games. [At first], I didn’t want to mess with OAuth by creating a Twitter application at all. Unfortunately Twitter doesn’t have web intents that let you post images–only text.

What I eventually did is when you click the button to share a card on Twitter the game creates a temporary html file on your local drive which has the image as embedded base64 data. That html file contains a form where you can customize your tweet, and the text and image are then posted to my server. Then my server goes through the OAuth loop and posts the tweet.

And how did you set up re-importing the cards back into the game?

I started with simple drag & drop, which was problematic enough when dragging a file on your local disk onto the game. [It was] inconsistent on Windows due to VAC and various permission settings, but it mostly worked. From browsers, though, it was awful. Some browsers would just give me the url to the image instead of the image itself, some would bizarrely serve me a BMP image, and half the time it just didn’t work at all.

MidBoss automatically detects URL links to possible death cards in the clipboard

Eventually I got exasperated with the whole thing and created an option which periodically checks your clipboard for text links to images, but only while the game is active in the foreground. If it thinks it’s found a link, it’ll fetch it to a temporary file (assuming the image is not too big), and checks if it is in fact a death card. If it is, it asks you if you want to import it. This way, all you have to do is right click the image and copy the image location to your clipboard.

Do you have any advice for anyone looking to improve on your export/import setup?

As for getting the image to Twitter, I think creating a local drive html form to post the data worked great. If you’re ever in that kind of situation, I highly recommend that solution. The real hell was getting the card back into the game.

I’m pretty sure the clipboard trawling caused anti-virus software to freak out about the game, although I can’t confirm that. Don’t do that. Instead ask for the player to paste a link to the image into your game instead. I’d already designed for a more seamless import experience so I couldn’t fall back to that.

I ran into issues with that method on Linux (and maybe Mac?) because, unlike .NET on Windows, Mono doesn’t integrate with an operating-system-level cache of valid SSL certificates. I think that’s mostly fixed now, but don’t hold me to that across all distros. Inevitably, the safest and most reliable way to get a death card into your game is to download the file into your DocumentsMidBosscards folder.

When stenography works, and when it doesn’t

What are the advantages and disadvantages of steganography over visually-interpreted encoding? For example, barcodes, QR codes, or Snapchat’s Snapcodes.

[Steganography is] completely intolerant of loss. If anything re-encodes the data in the image your data becomes corrupt. Someone much smarter than me could maybe figure out ways around that but I’m pretty sure the impact of the data on the visuals would be more pronounced and the amount of storage you’d get would go way down.

[However], it certainly looks cooler. It has this magical element of “Whoa, this image has my entire inventory in it?”. I’m no expert on other ways of encoding data, [but they] are more about creating a very small amount of data that’s resistant to all sorts of data loss, so they usually just point at something, an url, an identifier, etc. For something like what death cards do, you’d have to host the actual data externally in a central location, and that’s not something I could do with MidBoss.

How well have death cards worked out for you as a social media promotional strategy?

Unfortunately it’s really hard to track what effect, if any, it had. According to the Steam achievements about 4.6% of players have exported a card on Steam. That’s less than 300, which isn’t great. On the other hand I know that the players who did engage with the system really liked it and around launch the #LikeAMidBoss hashtag on Twitter was pretty lively. [In particular], one YouTuber called SirTapTap even said that that hashtag “is how you engage and create a community on social media”, and recommended other devs study it.

I think it was a worthwhile system and a success, but because the game had a pretty severe lack of coverage from press, it didn’t sell nearly enough copies to make this system shine and cause real virality.

How do you plan to you iterate on or improve on the death card system, in MidBoss or any future games?

I think I’ll definitely come back to sharing data on social media via images, I think it has a lot of interesting possibilities. I’d plan for it earlier next time and make sure to integrate more platforms. And like I said earlier, I’d make a system where players can import by providing the game with the URL, either for the image or the actual social media post.

As for MidBoss, I always planned to do special unlockable themes during holidays, as well as cross-promotional themes that would have the look of other games, unlocked for anyone who owned that game and MidBoss on Steam. I didn’t get around to doing that: release depression hit me pretty hard after MidBoss launched, because it performed so far below what we hoped it would.

I’m still planning to do the cross-promotional themes. I can’t really say which games we’ll be working with yet though, in case any of our deals with them fall through. (If you’re reading this and have a game on Steam and would like to do the card cross-promotion, feel free to contact me via email.)

Posted on Leave a comment

Video: Developing Rogue Legacy on a budget

What does it mean to be budget-oriented? As Kenny and Teddy Lee explain, it’s about prioritizing game mechanics and focusing on gameplay first. They spent just under $15k to develop Rogue Legacy, which can be attributed to their budget-oriented approach to design.

In this 2014 talk, Cellar Door Games’ Kenny Lee and Teddy Lee discuss the creation of their indie “roguelite” title, Rogue Legacy, with an emphasis on working within a tight budget. The priority is to find solutions that are cheap, fast, and reusable. 

The post-mortem discusses the different stages of development Rogue Legacy went through, what tools and techniques were used to build the game, and what obstacles the two faced after release.

Developers curious about budget-oriented design can now watch the talk completely free via the official GDC YouTube channel!

In addition to this presentation, the GDC Vault and its accompanying YouTube channel offers numerous other free videos, audio recordings, and slides from many of the recent Game Developers Conference events, and the service offers even more members-only content for GDC Vault subscribers.

Those who purchased All Access passes to recent events like GDC or VRDC already have full access to GDC Vault, and interested parties can apply for the individual subscription via a GDC Vault subscription page. Group subscriptions are also available: game-related schools and development studios who sign up for GDC Vault Studio Subscriptions can receive access for their entire office or company by contacting staff via the GDC Vault group subscription page. Finally, current subscribers with access issues can contact GDC Vault technical support.

Gamasutra and GDC are sibling organizations under parent UBM Americas.

Posted on Leave a comment

Pokémon Crystal is back–and so is Pikachu!

Pokémon Crystal is back–and so is Pikachu!

Originally released for the Game Boy™ Color system in 2000, the Pokémon™ Crystal game added several new features to the Pokémon franchise. For the first time, players could choose a female or male character, Pokémon battles featured animation, and more. And now, this Virtual Console™ release is available for the first time in Nintendo eShop on the Nintendo 3DS™ family of systems for only $9.99. *

In this version of Pokémon Crystal, players also have the chance to encounter the mythical Pokémon Celebi in an event after completing the game. In the original Pokémon Crystal game, Celebi could only be obtained by using a special accessory.

As with the Nintendo eShop editions of the Pokémon Gold and Pokémon Silver games, Pokémon Crystal takes advantage of the wireless communication capabilities of the Nintendo 3DS family of systems, allowing players to enjoy Link Trades and Link Battles with each other. With the Time Capsule feature, players can even trade and battle Pokémon from Pokémon Red, Pokémon Blue, and Pokémon Yellow: Special Pikachu Edition, which are also available in Nintendo eShop on Nintendo 3DS (additional games and systems required; sold separately).

But that’s not all! Fans can now play Pokémon Crystal on a New Nintendo 2DS™ XL system that features Pikachu’s iconic face, now available in stores at a suggested retail price of $159.99.

The New Nintendo 2DS XL Pikachu Edition system is just as electric as the Pokémon itself, with an eye-catching yellow design featuring a stylized close-up of Pikachu’s face. This special edition system is a must-have for Pokémon fans! As with all Nintendo 2DS systems, the New Nintendo 2DS XL Pikachu Edition system plays Nintendo 3DS games in 2D. (The Pokémon Crystal game and Pikachu Edition New Nintendo 2DS XL system are sold separately.)

For more information about Pokémon Crystal, visit https://www.nintendo.com/games/detail/pokemon-crystal-version-3ds.

For more information about the New Nintendo 2DS XL Pikachu Edition system, visit https://www.nintendo.com/2ds/buynow#new-nintendo-2ds-xl-pikachu.

*Pokémon Crystal for the Nintendo 3DS family of systems is only playable in 2D.

Game Rated:

Posted on Leave a comment

Study examines how the top 100 bestselling games portray drug use

Addiction awareness organization Archstone published a study examining the top 100 bestselling games per console (including Grand Theft Auto and BioShock) and analyzing each ESRB rating for substance use in order to further investigate the types of drug use present per game.

This information could prove useful for devs curious about how in-game drug use affects gameplay, and how its portrayed to the player. 

The study explores how in-game drugs are referenced, and the findings include what types of substances are featured, which genres included the most games with drug references (and whether those drugs were real or fictionalized) and how they affected gameplay. 

61 percent of games which featured drug use used real-world names, or fictional names for what were obvious replicas of real drugs. Around 38 percent of the games featured fictional drugs found in-game only, while fewer than 1 percent featured a mix of real and fictional substance.

The study also found that whether real or fictional, 40 percent of games featured drugs that caused the user to become disoriented in some way. Another 32 percent boost a character’s power while ingested, while 28 percent increase a character’s health.

Be sure to check out the entire study at Archstone’s website.