frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Open in hackernews

Show HN: Porting Terraria and Celeste to WebAssembly

https://velzie.rip/blog/celeste-wasm
334•coolelectronics•4d ago

Comments

rlmineing_dead•4d ago
Cool to see FNA/XNA projects projects working in the browser
dwattttt•2d ago
It's really impressive how much worked out of the box, decompiling a C# binary, then recompiling it for a target as different as WASM.
underdeserver•2d ago
And then it's also really impressive how much they did to get to the end.
jasonjmcghee•2d ago
Getting firebase "bandwidth quota exceeded" error when trying the demo.

You shouldn't have to worry about this kind of stuff if it's just a static site.

I'd host this on a cdn like cloudflare or github pages (free!).

coolelectronics•2d ago
My bad! Switched over to the github pages fallback. Cloudflare pages isn't suitable because the wasm files (100mb+) exceed the 25mb limit. (i could bypass this with service worker jank but that tends to be fragile). Github Pages also isn't suitable because it doesn't have a native way of sending the coi/coep headers that are required for SharedArrayBuffer to be available. Can also bypass that with service worker jank but I would prefer not to
hoten•2d ago
btw: this results in a white page on the first load until you manually reload, since the SW has not been loaded yet. May want to force a page reload on the SW install event to fix.

also: this is incredibly cool. thanks for writing this up and sharing!

truemotive•2d ago
Cloudflare R3 might suit the scenario better for you in terms of the heavy assets, it's like AWS S3 except for the cool part where you aren't charged for data egress (last I checked! haha)

I'm about to buy Terraria after all these years, just so I can get the assets and check this out. You're cool :)

vlovich123•2d ago
R2
NortySpock•2d ago
Oh Terraria is totally worth it, especially when spelunking with friends.

Its better than Minecraft, in my opinion.

tech234a•2d ago
Depending on how well the files compress, you could try: https://developer.mozilla.org/en-US/docs/Web/API/Compression...
bakkoting•1d ago
The service worker jank, while conceptually hacky, is actually remarkably un-janky and not really noticeable to users! It's very much fire-and-forget unless you also wanted to have another service worker (in which case it's time for suffering; service workers aren't even a little bit composable).

For anyone wondering: https://github.com/gzuidhof/coi-serviceworker or https://github.com/WebReflection/mini-coi

01HNNWZ0MV43FF•2d ago
This is very cool. However, the blog itself is not hitting 60 FPS on my Firefox. Probably that background effect?
dgb23•2d ago
I found that effect disturbing and distracting. It's rendered in a canvas element that you can delete via the inspector.
caminanteblanco•2d ago
This is absolutely amazing! I intend to use this on my Chromebook ASAP
71bw•2d ago
Your (?) website is so resource-demanding it's insane. I'm struggling to run it at any decent framerate on an i5-7500T. Makes the entire browser just crumble
poink•2d ago
I scrolled through the whole thing on my phone and it was fine
01HNNWZ0MV43FF•2d ago
Weird huh
doix•2d ago
You can disable javascript on the site and it works perfectly. I'm guessing it's this thing that destroys performance https://velzie.rip/static/background.js
kunwon1•2d ago
The moving background is absolutely intolerable, I didn't last ten seconds
midzer•2d ago
Celeste Classic in WASM https://midzer.de/wasm/celeste/
badmintonbaseba•2d ago
For some reason that runs at like double speed for me, very challenging.
flohofwoe•2d ago
Sounds like the game uses a fixed 60hz frame step but maybe you're on a 120hz display? Chrome and FF run requestAnimationFrame at 120hz in this case (while Safari sticks to 60hz)
badmintonbaseba•2d ago
Possibly, I'm indeed on a 120Hz display. I still got up to 1600m, it's a good challenge.

edit: 2000m now that I revisited. Crazy hard.

badmintonbaseba•2d ago
Made it to the summit at double speed.

  :strawberry:x14
  3:17:46
  deaths:1981
nottorp•1d ago
Don't link your world status updates to the frame rate please.

Even "AI"s know to show you how to do it in spite of requestAnimationFrame. I know, I asked.

But you have to ask them specifically to decouple game world updates from drawing, or they'll give you the dumb solution.

flohofwoe•9h ago
It's still a surprisingly tricky topic because simply measuring the frame duration (or using rAF's timestamp) gives significant timing jitter - which in turn introduces microstutter (and the other problem is that some browsers still limit timer precision to whole milliseconds due to the Specter/Meltdown fallout - but at least here the random jitter is useful because averaging over enough frames gives you the precise frame duration back, eg 16.667 or 8.333 ms instead of 15<=>17 or 7<=>9 ms
delusional•2d ago
> One of my favorite genres of weird project is "thing running in the browser that should absolutely not be running in the browser". Some of my favorites are the [...] the direct recompilation of Minecraft 1.12

Heh, you'd think Minecraft would be exactly the sort of thing that absolutely should be running in the browser, considering it was originally a Java applet.

I understand the point, I just find it amusing.

pjmlp•2d ago
Even more interesting is this idea of running WebAssembly on the server, in containers, with orchestration services among them, and communicating across sandboxed environments.

Somehow it reminds me of something, but memory is getting fuzzier nowadays. /s

baq•2d ago
You’re obviously talking about the 1972 VM/370 right?
pjmlp•2d ago
Naturally.
pjc50•2d ago
WebSphere!
voidUpdate•2d ago
Early minecraft versions did run in the browser before it was made a standalone app, and they recreated it recently https://classic.minecraft.net
HelloUsername•1d ago
> recently

6 years ago? https://news.ycombinator.com/item?id=19861584

James_K•2d ago
I've recently started trying to do a bit of basic game development targeting the web through WASM+OpenGL+SDL, and I must say, I'm shocked with how easy it is. I spent more time fiddling with CMake files than I did trying to the code to run on the web. There are still some limitations and rough spots on the web platform, but I've honestly had a much harder time compiling things for Windows or MacOS than for WASM.
Fraterkes•2d ago
Dumb question: do you have access to any of the nice text rendering features of the browser when you use Wasm, or is it basically just drawing to a canvas
James_K•1d ago
There is an Emscripten library which cross-compiles things to WASM. The means you can generally just pull in a dependency for font rendering, such as SDL_ttf.
flohofwoe•9h ago
There's no difference between WASM and JS in this situation.

Once you are in canvas land, you'll have to do the text rendering yourself - that's not the fault of JS or WASM though, but of the broken web API stack (what's there is not properly layered, and the whole layer stack is inverted, e.g. canvas sits on top of the DOM instead the DOM sitting on top of canvas).

parallax_error•2d ago
Safari on ios really hates this, all 3 demos crash upon loading lol
kkukshtel•2d ago
This post presupposes a bit of knowledge about C#/WASM and Native code linking in the C# ecosystem. I wrote a post a while back that could be a complement to this that does some more level setting about what's possible these days with compiling C#-based engines to the web for those that don't already have the context:

So You Want To Compile Your C# Game Engine To The Web With WASM

https://kylekukshtel.com/csharp-wasm-game-engine-compile-web...

modeless•2d ago
Porting games to the web is a fun hobby! I've done Quake III [1] and Cave Story [2]. Just like in this story it's all about the details. Getting the game loading is just the start. Things like adding touch controls for mobile, handling multiplayer, managing save files, supporting modern screen resolutions and frame rates, they take more time than the initial port.

[1] Single player: https://thelongestyard.link/q3a-demo/ Multiplayer: https://thelongestyard.link/q3a-demo/?server=HN

[2] https://thelongestyard.link/cave-story/

Spunkie•2d ago
It seems cool but haven't been able to get it working. I'm downloading terraria assets with the from steam option but its at only 5% after an hour.
acheong08•1d ago
This is so cool. Last time I played Terraria was back in 2014. One minor complaint: the resolution is too high & everything is scaled down a ton. It would be nice if we could have it scaled at 200% so i can actually see the text and icons
inlinestyle_it•1d ago
Amazing work. But I'm wondering, this is only for your own personal use right? Because the projects you are talking about here are still covered by copyright and thus even if you were the one who ported them to the web it's still not possibile to redistribute them for other people benefit.

If you are interested in taking a look, we run a cloud gaming service based on WASM at https://gaming.inlinestyle.it with cloud saves support. Many of things you discussed are related to what we had to do too, but we tried to do it only for opensource and freeware games so that everyone can benefit from them and play them on the cloud.

Appreciate any suggestion you have on how to improve the service!

Show HN: PunchCard Key Backup

https://github.com/volution/punchcard-key-backup
16•ciprian_craciun•1h ago•7 comments

Show HN: AI Peer Reviewer – Multiagent System for Scientific Manuscript Analysis

https://github.com/robertjakob/rigorous
56•rjakob•3h ago•40 comments

Show HN: Fontofweb – Discover Fonts Used on a Website or Websites Using Font(s)

https://fontofweb.com
20•sim04ful•2h ago•8 comments

Show HN: I built an AI agent that turns ROS 2's turtlesim into a digital artist

https://github.com/Yutarop/turtlesim_agent
17•ponta17•7h ago•7 comments

Show HN: I Couldn't Find a Good Open-Source Web Video Editor, So I Built One

https://github.com/robinroy03/videoeditor
4•robinroy03•1h ago•0 comments

Show HN: Icepi Zero – The FPGA Raspberry Pi Zero Equivalent

https://github.com/cheyao/icepi-zero
205•Cyao•3d ago•49 comments

Show HN: MCP Defender – OSS AI Firewall for Protecting MCP in Cursor/Claude etc

https://mcpdefender.com
52•gsundeep•1d ago•36 comments

Show HN: LaminarFlow – AI-native, open-source finance platform for startups

https://www.lamflo.xyz
4•ydew•2h ago•0 comments

Show HN: I spent 2 years building an iOS app no one asked for

https://basamasa.github.io
2•anzerarkin•4h ago•3 comments

Show HN: Smart Silence – Remind your iPhone to stay quiet in quiet places

https://testflight.apple.com/join/47CJ31VK
44•ebagsnave•3d ago•31 comments

Show HN: W++ – A Python-style scripting language for .NET with NuGet support

https://github.com/sinisterMage/WPlusPlus
92•sinisterMage•1d ago•50 comments

Show HN: Asdf Overlay – High performance in-game overlay library for Windows

https://github.com/storycraft/asdf-overlay
66•storycraft•22h ago•16 comments

Show HN: Git-Add–Interactive with Enhancements

https://github.com/cwarden/git-add-interactive
71•xn•1d ago•36 comments

Show HN: MCP Server SDK in Bash

https://github.com/muthuishere/mcp-server-bash-sdk
140•muthuishere•1d ago•33 comments

Show HN: Onlook – Open-source, visual-first Cursor for designers

https://github.com/onlook-dev/onlook
212•hoakiet98•2d ago•80 comments

Show HN: I made a single place scheduling tool

https://postonall.com
3•dustinbel•7h ago•0 comments

Show HN: Donut Browser, a Browser Orchestrator

https://donutbrowser.com/
86•andrewzeno•1d ago•39 comments

Show HN: Leap – Full-stack AI developer agent that deploys to AWS

https://leap.new
18•machekb•1d ago•1 comments

Show HN: Changefly – Rebuilding the foundation of privacy and authentication

https://www.changefly.com/developer
11•davidandgoli4th•20h ago•2 comments

Show HN: I wrote a modern Command Line Handbook

https://commandline.stribny.name/
433•petr25102018•2d ago•108 comments

Show HN: Every problem and solution in Beyond Cracking the Coding Interview

146•leeny•3d ago•102 comments

Show HN: Public transportation departure board

https://www.stationdisplay.com/
20•sschueller•1d ago•17 comments

Show HN: I made a Zero-config tool to visualize your code

https://staying.fun/en
129•lezhu•2d ago•45 comments

Show HN: templUI – The UI Kit for templ (CLI-based, like shadcn/UI)

https://templui.io/
61•axadrn•1d ago•30 comments

Show HN: Lazy Tetris

https://lazytetris.com/
428•admtal•4d ago•147 comments

Show HN: Typed-FFmpeg 3.0–Typed Interface to FFmpeg and Visual Filter Editor

https://github.com/livingbio/typed-ffmpeg
335•lucemia51•2d ago•38 comments

Show HN: Dagu 1.17-beta – Run complex workflows without the Airflow complexity

https://github.com/dagu-org/dagu
2•yohamta•11h ago•0 comments

Show HN: PgDog – Shard Postgres without extensions

https://github.com/pgdogdev/pgdog
304•levkk•5d ago•80 comments

Show HN: Porting Terraria and Celeste to WebAssembly

https://velzie.rip/blog/celeste-wasm
334•coolelectronics•4d ago•46 comments

Show HN: Weather2Geo – Geolocate screenshots from weather widgets

https://github.com/elliott-diy/Weather2Geo
54•Elliott-Diy•3d ago•9 comments