Gotchas while developing a tiny web game

Another year, another JS13K Games edition is over, the game jam where you have to develop a game under 13KB. This strict size limitation means that we often have to implement most things from scratch, as most game engines are prohibitively large. This …


This content originally appeared on DEV Community and was authored by Joao L.

Another year, another JS13K Games edition is over, the game jam where you have to develop a game under 13KB. This strict size limitation means that we often have to implement most things from scratch, as most game engines are prohibitively large. This means that we're constantly reimplementing the metaphorical wheel, which leads to fresh new bugs.

As always, we're encouraged to playtest our colleagues' games. The following is a list of a few gotchas, in very limited depth, which I've collected while testing games this year.

1. Players don't have the same fonts as you

This should be obvious, but each computer has a different set of fonts installed. This means text will look different for other players. It's not just that individual letters look different, but the whole size occupied by them is different, both in width and height, regardless of font size. Don't rely on text having the same size for other players.

Screenshot of the same Dungeon of Curse

The above screenshot from the great game Dungeon Of Curse is an example of this. The title screen is cut off because the font is unexpectedly wide in my system.

Because embedding whole font files is too expensive, many developers simply create tiny fonts for their own games. But if you go the easy route and use system fonts, be sure to leave enough wiggle room for chunkier fonts.

2. There are screens with very high refresh rates.

For the longest time, most screens have had refresh rates of 60Hz. And so when calling requestAnimationFrame on javascript, you would expect to get 60 updates per second. However, higher refresh rates are very common nowadays, ranging from 75Hz to 120Hz or even 400Hz.

This is important to keep in mind because if you update your game state equally on each frame while disregarding the actual frame rate, your game might become too fast. So you either have to limit your game's refresh rate, or make it so that updates in your game depend on the time interval between updates.

I'm not going to pretend I'm an expert — this issue caught me off guard during this jam — so here is a helpful link on the subject:

https://gafferongames.com/post/fix_your_timestep/

3. Beware of accessibility features

It's honestly already hard enough to fit a whole game in 13kb and to build it in just a month. But there are people out there who struggle with using technology every day. They sometimes use accessibility features in their browser or OS which might clash with the games we create.

One such case is the feature "search as you type", which causes typing to initiate finding in the page. This can be circumvented by calling preventDefault() while the player is controlling your game with the keyboard.

It's up to you whether and how much you want to prepare for computers with diverse setups. Just keep in mind that not paying attention to those details might mean your game is completely broken for some players, and it's unfair to blame them for it.

4. Voice synth

"window.speechSynthesis is undefined"

This was a weird one. In case you're not familiar with it, the Web Speech API is a web API that lets you reproduce voice

Apparently on some systems (like mine) this is disabled or absent. It can be toggled in Firefox in about:config under media.webspeech.synth.enabled.

I didn't penalize any game when this happened, despite their games crashing catastrophically. But the fix is as easy as verifying that speechSynthesis with conditional chaining: window?.speechSynthesis.

And do keep in mind that the browser is actually using the voice synthesizer of the operating system. No OS voice synthesizer installed, no speechSynthesis.

4.1 Incorrect voice language

Even if the user has a voice synthesizer, has it enabled on the browser, and even if window.speechSynthesis is defined, you're still not off the hook! To everyone's surprise, there are people out there with devices in languages other than English (</s>).

When calling getVoices() to use the voice synthesizer, you might not be provided an English voice. Or perhaps not as the primary voice. Hilarity ensues when you try to read an English sentence in another language.

5. Browser compatibility is still important

Talking about different setups, many people seem to think that Chrome is the only Internet browser around these days. Or worse, that whoever doesn't use a Chromium-based browser deserves a worse experience.

I'm a strong apologist of the open Web and the current Chrome monoculture is harming it. Google shouldn't get to decide what becomes a standard and what doesn't.

It's your job as a developer to make sure your code runs correctly on the different browsers.


This content originally appeared on DEV Community and was authored by Joao L.


Print Share Comment Cite Upload Translate Updates
APA

Joao L. | Sciencx (2024-09-26T17:22:37+00:00) Gotchas while developing a tiny web game. Retrieved from https://www.scien.cx/2024/09/26/gotchas-while-developing-a-tiny-web-game/

MLA
" » Gotchas while developing a tiny web game." Joao L. | Sciencx - Thursday September 26, 2024, https://www.scien.cx/2024/09/26/gotchas-while-developing-a-tiny-web-game/
HARVARD
Joao L. | Sciencx Thursday September 26, 2024 » Gotchas while developing a tiny web game., viewed ,<https://www.scien.cx/2024/09/26/gotchas-while-developing-a-tiny-web-game/>
VANCOUVER
Joao L. | Sciencx - » Gotchas while developing a tiny web game. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2024/09/26/gotchas-while-developing-a-tiny-web-game/
CHICAGO
" » Gotchas while developing a tiny web game." Joao L. | Sciencx - Accessed . https://www.scien.cx/2024/09/26/gotchas-while-developing-a-tiny-web-game/
IEEE
" » Gotchas while developing a tiny web game." Joao L. | Sciencx [Online]. Available: https://www.scien.cx/2024/09/26/gotchas-while-developing-a-tiny-web-game/. [Accessed: ]
rf:citation
» Gotchas while developing a tiny web game | Joao L. | Sciencx | https://www.scien.cx/2024/09/26/gotchas-while-developing-a-tiny-web-game/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.