Palm Save

A series of examples studying the new game development capabilities ERC-721 objects enable.

Project README

Palm

Palm is the continuation of my work on Galah to explore new and unique game development capabilities that integrating with the Ethereum blockchain can bring. Through the specific use of the ERC-721 standard for non-fungible assets, Palm considers just what can be accomplished with globally-available trustless game state.

In keeping with the precedent set by Galah, I've named the project after a large Australian parrot.1

Motivation

The multibillion-dollar video game industry is increasingly adopting in-game purchases as an additional revenue source. Such in-game purchases are dubbed "microtransactions" and require players spend real-world money to unlock in-game content.2 Microtransactions are often criticized by players and have resulted in public relations disasters for the companies which implement them.3 Using the Ethereum blockchain, this project demonstrates a revision to the microtransaction model where players can purchase and truly own their in-game content.4,5

Ethereum is one of several blockchains popular among developers for its ability to execute useful code. With Ethereum, this is done using developer-defined "smart contracts." A developing standard in Ethereum is the ERC-721 "non-fungible token" to unify how contracts represent unique, individually-owned metadata. This standard enables a common "CryptoObject" where developers can store any information their applications use. Ethereum users can take irrevocable ownership of these objects and freely trade them with one another.

This project demonstrates techniques by which the Unreal Engine, a popular tool for developing video games, can interface with Ethereum contracts. Now developers can use the CryptoObject contracts to represent, sell, and interact with their in-game content. The controversial microtransaction model is altered: players no longer pay to just unlock content restricted to a single game. Instead, they attain real ownership. Player-owned content can be exchanged with others or used in multiple games.

Palm demonstrates how Ethereum empowers the free trade of online game content.

Exchange Trust Model

Typically, real-time video games simulate their world using a fixed simulation timestep known as the "tick rate." For example, Valve Corporation's popular multiplayer first-person shooter Counter-Strike: Source supports servers with a tick rate of 66Hz.6 That is, the game servers update state 66 times per second. Game logic, physics simulations, and player input signals are all processed in frequent, discrete time quanta. These state updates are decoupled from the client-side rendering frame rate, allowing for smooth rendering to be maintained across a variety of tick rates.

Real-time games can update their state more frequently than transaction times for Ethereum can currently support. The all-time peak transaction rate for the Ethereum network was 15.6 transactions per second.7 Even games with less frequent tick rates like Epic Games' Fortnite outpace this peak transaction rate.8

It is currently infeasible for a real-time game to track and update its state directly on Ethereum, even if its tick rate was dramatically reduced. The time it takes to interact with Ethereum and wait for a miner to commit a state update transaction to the chain is variable. A fixed tick rate is not currently possible to maintain, which makes processing logic, physics, and input much more difficult. Lastly, operating the game server would require constantly burning gas for small, short-lived updates and would be very costly.

Clearly, traditional servers are more appropriate than Ethereum for handling the frequent game state updates required to simulate a multiplayer game. What role then, if any, can Ethereum play in video games?

A hybrid trust model.
A hybrid trust model similar to a cryptocurrency exchange can overcome many scalability issues.

The contracts, web server, and interface shown used in the following demonstration are available in the GameExchangeContract folder of this repository. The interface shown above is a simple page using web3.js to read state from and interact with a deployed instance of my GameExchange contract.

The solution that Palm explores is a hybrid trust model where players can opt into and out of object modification from a centralized authority under the control of a game's developers. Instead of a game interacting with a player's on-chain objects in real time, the game can track state changes off-chain on a traditional server. Updates are only committed to the blockchain periodically.

This model is very similar to how large cryptocurrency exchanges operate: when users hold cryptocoins on an exchange, they typically don't own them on-chain. Instead, the off-chain cryptocoin accounting is centralized entirely on the exchange's servers. This model suffers from centralization in that users don't actually fully own their coins until withdrawing from the exchange to another wallet. However, the model benefits from being able to update its off-chain reckoning of state quicker and cheaper than interacting with the blockchain would allow.

When the player opts an object into modification, as they are shown doing above, they are consciously trusting the game authority to manage state updates to that object appropriately. A malicious or faulty game authority could manipulate the metadata of the object such that it destroys whatever value the object might have held. A malicious cryptocurrency exchange could steal coins in much the same fashion. When the player opts an object out of modification, they lock its state such that not even the game authority can manipulate it.

An example game.
Palm's example game is a simple shooting gallery where the player's high-scoring gun is tokenized.

To demonstrate this model in action, Palm includes a simple game which tracks a player's high scores per gun as ERC-721 objects. The game includes a client built in the Unreal Engine and a separate Java server for interacting with the exchange contracts. The Unreal Engine client assets are available in the TargetShootProject folder of this repository. The Java server is available in the TargetShootServer folder.

The player is locked to a small shooting area and given a gun. The gun displays its all-time high score, which is recorded in a corresponding ERC-721 record. After the player shoots the red cube to trigger the start of a match, they have 30 seconds to shoot as many red popup figures as they can while avoiding green figures. The server tracks the player's score and updates the gun's display when new high scores are achieved.

After 30 seconds, the round ends and the server sees if the player has set a new record. Only then is the player's gun object, if they have opted for object modification, updated with the new high score. During the course of a match, all communication is directly between the Unreal Engine and the Java server. The gas and time costs of transacting with the blockchain are avoided until the player is done playing.

Taking a look back at the web interface, we can see that the server authority has modified the player's gun object to include the new high score. While this simple game trusts the client, in practice the game server would exist separately from the client as a remote authority. The game authority would modify the player's gun object from a separate machine with separately signed transactions, preventing players from cheating.9

The previous high score is saved, and the new one can overwrite it.
The previous high score is retrievable from Ethereum and can be modified by the server when needed.

The example above shows a player entering the game again for another match. Their previous high score persisted on the blockchain between their play attempts. In this gameplay clip, once the player surpasses their old high score, the gun object begins updating with the score value tracked on the remote centralized server. When the match ends, the newer high score is committed to the blockchain.

The newer high-score and opting out.
Showing the even-higher high score from the second round, as well as the user opting-out.

The player, satisfied with the high score of 19, chooses to opt out of object modification. This is a precautionary step to prevent the game authority from altering the player's high score on that gun object. In practice, because players must pay a small gas cost in transacting with Ethereum to opt into and out of object modification, likely player behavior will be to just fully trust the game authority to behave and remain opted in at all times.

The player might also be opting out in order to trade their gun object to someone. Exchanging objects actually requires the object to be opted out of modification. Palm has made this design decision in order to prevent sold objects from being modified without the buyer's consent; players can only transfer objects which are opted-out of modification. This model allows the buyer to know for certain that whatever object they purchase will be theirs in exactly the same state it was sold in. The edge-case where a buyer sees their recently-purchased item change because the seller is still playing with it has been handled.

Using Objects in Multiple Games

One interesting use case of blockchain-based objects in games is the ability to seamlessly share objects between multiple games. One could imagine a situation where a player's $28,000 of virtual hats could be worn by characters across many different games. Player ownership of these collectable items becomes far more tangible: not only can they be made certifiably unique, but the objects also won't disappear even if the game they come from does. Their value can outlive the reason why they were originally purchased, and objects can find fresh life in newer titles.

Blockchain-backed ERC-721 objects can also be used to represent a player's identity and statistics as they move from one game to another. Maybe a player's skill in Counter-Strike automatically entitles them to a higher rank in the next Battlefield game. This raises an especially important point: the ERC-721 objects can be used by multiple games even if they don't have the same development team or same access to the modification authority. That is, every developer has read-access to a game's objects and can use that in their own game, even if they are unable to write to the object.

An entirely different game using the same gun object.
An entirely different game without modification authority can read objects from other games.

In the GuessingGame folder, Palm includes a simple Java game which communicates with the deployed GameExchange contract. The guessing game generates a random number between 0 and 100 and the player has a limited number of guesses to find the number. The player is given notice if they guess near the actual number.

The guessing game is not a modifying authority to the TargetShootProject's gun objects. The guessing game does, however, use its read access to pull the player's high score from one of their player-specified owned gun objects. The number of guesses a player is given is equal to the high score they were able to achieve with their chosen guessing gun. While this is an extremely simple example, it does show what kind of interesting cross-game interactions can emerge from using this standard.

Trustless Economy

Given how commonplace microtransactions are in modern games, it is clear that game developers want to monetize their in-game economies to produce an additional source of revenue. Developers want to do so in a manner which is guaranteed to be tamper-proof.

In-game currencies are prone to abuse when players exploit unknown bugs. Electronic Arts' failure to secure the in-game currency of their FIFA series allowed it to be freely duplicated by players. One player, Ricky Miller, was actually prosecuted and plead guilty to conspiracy to commit fraud after duplicating $16M worth of FIFA coins.11 In the face of concerted effort by players to exploit bugs in a game's trading and currency system, developers are incentivized to use a blockchain like Ethereum for its proven security.

Another concern for game developers where valuable virtual items are involved is legal liability surrounding what players choose to do with those objects on your platform. Valve Corporation, for example, briefly had to deal with lawsuits regarding illegal skin gambling on their platform. In their popular game Counter-Strike: Global Offensive, players can decorate their weapons with colorful "skins." Some of these skins are extremely rare and valuable. Players were using the in-game trading functionality to gamble valuable skins on the outcome of professional Counter-Strike matches.12 Valve's liability concerns were how responsible they were for the illegal activity of players using their trade platform.

For developers using a public blockchain like Ethereum as the platform for executing all transfers of in-game objects between players, the liability concerns seem diminished (Tim Clancy is not a lawyer). If players choose to gamble with the ERC-721 records from your game, you have no way to stop them. They could build out their own infrastructure on Ethereum and the gambling behavior would exist in a format that you provably have no control over.

Interactions in the Trustless Economy

This section of the project observes the possible interactions between ERC-721 object exchanges for two competing games. It deals specifically with two instances of the GameExchange contract deployed live to the Ropsten test network, "GameExchange" and "RivalExchange". The destruction of objects from one exchange in facilitating the creation of objects on another is handled by the deployed "SwapAndBurn" contract whose source is available here. The goal is to demonstrate how developers from one exchange can interfere with objects on another exchange.

In this scenario, developers from team A operate "GameExchange" and serve objects for their game. Developers from team B setup "RivalExchange," another ERC-721 object registry, and want to entice users away from team A's game. To that end, team B sets up the "SwapAndBurn" contract. This contract allows a player on team A's "GameExchange" to destroy one of their objects in return for a free object on team B's "RivalExchange." Team B hopes that by encouraging team A's players to destroy their objects, they can disrupt the gameplay or economy surrounding team A's game.

Two exchanges. Minting object. Confirming mint.
Two exchanges. Minting object. Confirming mint using MetaMask: I am locally the exchange authority.

The stills above show the process of requesting that a new object be minted on the first "GameExchange" exchange. After specifying the desired metadata, issuing the minting transaction is handled by MetaMask. Currently I am just freely minting an object for myself, but it is conceivable that developers would put this sort of functionality behind a storefront whereby the player is only given a newly-minted object after paying.

Object minted. Requesting approval.
Object minted. Requesting approval on the object with a token ID of 2.

After the object has been successfully minted, we can see the new listing under the "GameExchange" as a token with ID of 2 and metadata of "Second test asset!" Its name is colored black, as opposed to red for the previously-existing token 0, because it has not been approved for the deployed "SwapAndBurn" contract to take ownership of. The user who owns token 2 must specifically request that "SwapAndBurn" be approved to take ownership later.

This explicit approval step is necessary because the "SwapAndBurn" contract must be allowed to take an object away from the player and destroy it before issuing the player a new token on "RivalExchange." The player can verify through inspection of the SwapAndBurn contract that there is no risk to this approval step: there is no way by which the SwapAndBurn contract can take ownership over the player's object without also issuing them their new "RivalExchange" object.

Approval successful. Requesting trade. Trade successful.
Approval successful. Requesting a trade on the object with a token ID of 2. Trade successful.

The approval step succeeded, as indicated by token 2's listing turning red. Next, the player requests the trade from "SwapAndBurn." This function takes ownership of token 2 as it was approved to do, burns token 2, and then issues a new object to the player. The final still shows that this is successfully the case: "GameExchange" has permanently lost an object while the player has redeemed the newly-minted "RivalExchange" token with ID of 1.

Conclusion

There are countless creative ways to apply smart contracts and the Ethereum blockchain to the realm of video game development. Blockchains provide developers with an avenue for persistent data storage, secure trade platforms, and a new avenue to monetize content. The use of a standarized ERC-721 object enables unprecedented cross-game interactions. Games can interact with each other's data even among different development teams. Ethereum is empowering game developers, and Palm has barely scratched the surface.

References

The following resources are important references for the information presented in this project:

  1. The Palm Cockatoo image is the work of Reg Mckenna, released CC BY 2.0.
  2. Davidovici-Nora, M.: Paid and Free Digital Business Models Innovations in the Video Game Industry. Institut Mines-Telecom, 83-102 (2014).
  3. Most Downvoted Comment, Electronic Arts received massive microtransaction backlash in this reddit thread.
  4. Olsson, B., Sidenblom, L.: Business Models for Video Games. Department of Informatics, Lund University, 5-50 (2010).
  5. Švelch, J.: Playing with and against Microtransactions. The Evolution and Social Impact of Video Game Economics. p. 102-120 Lexington Books, London (2017).
  6. Valve Networking Guide, an excellent primer on multiplayer game networking with specifics for Valve titles.
  7. Ethereum Transaction Rate, as of 4/25/2018 the rate peaked at 1,349,890 transactions on 1/4/2018.
  8. Battle Royale Tick Rates, an analysis of the tick rates in several multiplayer games of the battle royale genre.
  9. Gaffer On Games, an authority on the importance and details of authoritative game networking.
  10. Expensive Team Fortress 2 Backpack, real money accrues in game objects, like $28k of virtual hats.
  11. FIFA Coin Heist, a group reverse-engineered enough of FIFA to exploit a currency-duplication bug.
  12. Valve Skin Gambling, Valve faced some lawsuits regarding players illegally gambling using their in-game objects.

Supporting Projects

I'd like to thank the following guides, tools, and projects which greatly supported the development of Palm:

  • ERC-721, a good primer on the developing Ethereum standard.
  • OpenZeppelin, community-produced Solidity developer resources with a proven history of success.
  • Unreal Engine 4, the Unreal Engine is a free high-quality game and physics engine.
  • Ethereum JavaScript API, web3.js provides the wrappers needed to integrate with smart contracts on the web interface.
  • The Online ABI Encoding Tool by HashEx, to convert constructor parameters to ABI encoding for verification.
  • Etherscan, for providing an easy interface to validate deployment and contract state.
  • JavaScript Promises in Web3, this article provides an overview on converting Web3 calls to Promises seamlessly.
  • MetaMask, a browser add-on which lets one interact with Ethereum without a full node.
  • Truffle, a development environment, testing framework and asset pipeline for Ethereum.
  • Infura, a gateway for cloud-hosted Ethereum nodes.
  • Web3j, a lightweight, reactive, type-safe Java and Android library for integrating with nodes on Ethereum blockchains.
  • LowEntry Socket Connection, a useful networking plugin for the Unreal Engine with native Java integration.
  • json-simple, a simple and fast JSON parser.
  • solc-js, JavaScript Solidity compiler bindings used here to create the Java contract wrapper.
  • The generous support of the Berkman Fund for Undergraduate Innovation at Penn Engineering.
Open Source Agenda is not affiliated with "Palm" Project. README Source: TimTinkers/Palm
Stars
54
Open Issues
0
Last Commit
5 years ago
Repository
License

Open Source Agenda Badge

Open Source Agenda Rating