Rendered at 18:34:59 GMT+0000 (Coordinated Universal Time) with Cloudflare Workers.
redbell 7 hours ago [-]
> Kaboom Valley
This game reminded me of Gorilla Basic (GORILLA.BAS), it really brought back some childhood memories, so nostalgic! Unfortunately, this Kaboom Valley game seem to be unplayable! None of the buttons is working for me and only the computer is able to fire its projectiles over my head :(
marcomourao 5 hours ago [-]
Reminds me of Scorched Earth.
homegamesjoseph 6 hours ago [-]
I will take a look and publish a fix, thanks for checking it out!
ricardobeat 19 hours ago [-]
Could not play any of the games - too many requests errors. Why do they need "sessions", are they not running client-side?
homegamesjoseph 19 hours ago [-]
I forgot to mention this in the post, but the games themselves run on the server. This gives every game multiplayer for free out of the box, and clients just read the server state and send back input.
The idea is that you could use a browser or custom client or whatever to connect to a game server
nnevatie 14 hours ago [-]
Hmm, not sure why "Weed Smoke Willie" would require any of that? It looked like an interesting game, though - I hadn't appreciated the idea of fishing shark with weed, before.
homegamesjoseph 14 hours ago [-]
For sure it doesn’t utilize any network stuff now, but it would be super easy to add a couple more Willies in there. But definitely considering adding an optional client side only thing for single player games
Drakim 9 hours ago [-]
I love the concept of multiplayer-first without needing intricate networking knowledge. I'm actually working on a similar system for old retro games.
However, the demo games you have come across as too trivial and trashy to really show off what your system is capable of. I highly recommend putting a lot of effort into making something that shines there.
TiredGuy 14 hours ago [-]
Hey I was looking for documentation to learn how to make my own games but I didn't see a link on the website. Do you have any docs? If so please consider putting a link to it on the front page.
I didn't try logging into the studio since it was asking for username and stuff, so maybe the docs are there? I just wanted to read the docs before committing to a login and stuff to see if this is worth my time.
homegamesjoseph 6 hours ago [-]
Hey good catch, I will put up links to docs outside of the studio. The studio now has some samples for game node types, eg. shapes, text or assets as well as an llm-focused game guide you can dump into Claude or whatever to have it make games.
But will definitely add some more outside of the studio.
Thanks for checking it out!
avaer 20 hours ago [-]
Does everything need a "session"? Is it possible to have fully static games/exports?
homegamesjoseph 20 hours ago [-]
One thing I forgot to mention is all of these games run server side and thin clients just render and send input back to the server. So a game session needs to exist for the back and forth communication to work.
Theoretically you could do this all client side too, but that would remove the magic of every game getting multiplayer for free
avaer 19 hours ago [-]
If you architect your protocol cleanly, you should be able to run the simulation client side too without much effort (certainly the web platform has everything you'd need). This is how modern game engines do it, it goes back to the Quake VM and probably beyond.
You'd still get multiplayer "for free", but it could be turned on and off. You could do it with zero code change for the actual games, they don't have to know.
It seems some of the games could do with a singleplayer mode that doesn't depend on the backend having free slots.
Just an idea from a fellow web games person!
purple-leafy 19 hours ago [-]
This is something I’ve done with my web game, I run the entire simulation client side so as to never worry about scaling issues.
Why reach for a server unless you truly need one! My multiplayer mode is p2p planned
homegamesjoseph 19 hours ago [-]
Thanks for the feedback! Local games weren't something I really considered until recently, but it would definitely be cool
__del__ 20 hours ago [-]
as a matter of ux, users probably don't need to know that a session is being instantiated, and probably expect a simple play button
fun
homegamesjoseph 20 hours ago [-]
Thanks for the feedback! Need a good way to clean up the UI to distinguish between joining someone's multiplayer session or creating your own
BSTRhino 17 hours ago [-]
Wow! Can you tell us a bit about what the past 8 years have looked like for you?
homegamesjoseph 16 hours ago [-]
Sure thing! Basically started making simple rendering tests over a websocket and then added images, font and audio support.
The initial idea was to make jackbox style games people could host on their computers and play on their phones in the same room over wifi.
Added to that and kind of did a whole lot of nothing productive around covid, just experiments that didn’t get deployed anywhere. And a podcast with over 100 episodes.
A few years ago my wife and I had our first kid, so I spent about a year polishing the self hosted stuff and figured I would put the project on the shelf.
So that’s pretty much what I did until around 6 months ago when I realized the actual Internet is fast enough to run these games outside of a LAN, and a lot of people including myself miss browser based games. That plus Claude making me way more effective in my limited free time led to the current state of things
purple-leafy 19 hours ago [-]
I like the concept and tried to play some games by starting or joining sessions, either nothing happened or I got disconnected straight away?
Anyway nice concept. I’m also making web games (see my post history) so if anyone wanted to connect and discuss, send me an email (in profile too)
homegamesjoseph 19 hours ago [-]
Sorry about that, looks like the traffic spike from HN overwhelmed my session management stuff. It will only get better!
purple-leafy 18 hours ago [-]
No need to be sorry! Good job on launching and working on it for years. It’s awesome. These launch hiccups happen.
Just keep pushing, I know how hard it is
HoldOnAMinute 20 hours ago [-]
Does anyone remember "Shoot 'Em Up Construction Kit" on the Amiga?
teddyh 20 hours ago [-]
And for the Commodore 64.
dosisking 11 hours ago [-]
And Fireworks Construction Kit
And Garry Kitchen's Game Maker
tclancy 6 hours ago [-]
>Garry Kitchen
There’s a name I’ve not heard in a long, long time.
Pxtl 19 hours ago [-]
I was obsessed with the Arcade Game Construction Kit on the C64.
alienbaby 20 hours ago [-]
And Amos and blitz basic
usernam33 10 hours ago [-]
Web games moved way beyong these style of games.
Complex 3D using three.js and rigid body physics engines in wasm workers like rapier is feasible now.
We can do full multiplayer pipelines with server authority, client prediction and reconciliation and still run at 60fps.
Its really amazing what can be pressed into a single html these days.
dosisking 7 hours ago [-]
Everytime I try and use one of those Complex 3D web games, all 8 cores of my computer go to 100% and my computer becomes unresponsive until I kill the web browser.
Its really amazing how inefficient those Complex 3D web games are.
philipwhiuk 9 hours ago [-]
Breakout is still a good game even though we can 'do 3D'
ViAchKoN 20 hours ago [-]
Nice idea. I found a couple of interesting games on this.
Thanks for sharing! Cool that you haven't stopped working on this project after that long time. It gives me inspiration to work on my projects which I can't find time to finish.
homegamesjoseph 20 hours ago [-]
Thanks! I'm planning on making a lot more. I made most of this stuff before AI tools were available. But now Claude can one shot really impressive stuff, it's amazing
matthewfcarlson 19 hours ago [-]
I worked on a similar concept (padgames.io now defunct) that offered a state sync networking system with rollback netcode style stuff. It could handle exposing only certain information or fake info to certain clients (to prevent cheating). It integrated super nicely with vuex or react stores as it was all observable and all game actions just turned into state mutations.
I made the game I wanted, enjoyed it with family and friends, and then let COVID sweep it away. Congrats on continuing to work on it.
versteegen 18 hours ago [-]
Isn't it strange, how some incredibly crude game written in the 80's will probably live forever in an archive somewhere, while the sophisticated things we create today are amazing but too numerous to be preserved or remembered. Working on a rollback netcode system as well currently.
homegamesjoseph 17 hours ago [-]
Even a similar name! That’s awesome.
alienbaby 19 hours ago [-]
Nice! Some fun making big chains explodey things :)
HelloUsername 11 hours ago [-]
Nice. Why does the homepage have two scrollbars?
lukasco 19 hours ago [-]
Fun, seems to be working. Do you have levels? All the games I played seemed to have a static level.
homegamesjoseph 17 hours ago [-]
Thank you! I don’t have any super fleshed out games with progression yet. I have some ideas but the most thorough game at this point is vegas trail. The balancing is busted in that at the moment. Will definitely fix that and make more games with some depth
blueTiger33 11 hours ago [-]
strangely your site was not blocked from my company :D you are doing a great job
nadermx 21 hours ago [-]
I was just closelined by a beam in one of the games. Badass
homegamesjoseph 21 hours ago [-]
Nice! I actually didn’t know the rendering stuff could support anything pseudo-3D like that until yesterday.
subbu963 15 hours ago [-]
interesting idea, i wanted to build something like this for some time
mantisman 20 hours ago [-]
Very cool! Love seeing more browser games
homegamesjoseph 20 hours ago [-]
Thank you! Obviously still some gaps to close but would love for this to carry on the spirit of newgrounds and stuff like that.
iamoseauditor 20 hours ago [-]
Wow nice.
agentduel 11 hours ago [-]
[dead]
petterroea 11 hours ago [-]
As a side note, having "Weed Smoke Willie" be a featured game on the front page isn't really a good look. As the saying goes "birds of a feather flock together", and I think a lot of people will see that and think "okay so that's the kind of person that uses this platform"
tegiddrone 8 hours ago [-]
I donno man, i just want to drive my gondola thing and help fish “get high.” Glorious
advael 11 hours ago [-]
As a side note, writing comments that sound like some pearl-clutching culture warrior on a post about someone's open source software isn't really a good look. As the saying goes "birds of a feather flock together", and I think a lot of people will see that and think "okay, so that's the kind of person who comments on people's passion projects on hacker news"
petterroea 9 hours ago [-]
I think that's a very weird and dishonest take. To me, it reads as written by reflex rather than in good faith.
You can point out that something isn't a good look and not be a pearl-clutching culture warrior, although for people who feel strongly for/against it certainly doesn't feel this way. The marijuana culture in general is in my experience generally perceived as tacky and I personally know many who use but want nothing to do with the culture itself because it's a bunch of people whose humor essentially equates "weed = funny" in the same way kids equate "poo = funny". As usual it's a loud majority making the rest look bad, of course, and not a general rule about how marijuana users behave.
It is well known that similar people get along and stick together, and if you manage a community you will know that whatever you put on a pedestal decides what kind of new people are attracted, and what kind of people stay. If you want to build something community driven, this is something you will need to manage. Sure, you can put this kind of stuff on the home page, but your home page tells new users what the community looks like.
As an example you are probably familiar with, Reddit solved this using subreddits and the front page - the content shown to new users is almost by definition the most popular and agreeable content that most people like, which is good for adoption. I think we would both agree reddit would seem a lot less attractive if to new users if the user is shown a random selection of new posts from all across the site. Instead, it is the users responsibility to find niches that may fit them better than the average opinion. Most subreddits are out of sight for those who don't care/don't want to interact with it.
If you want to show off your product and want adoption, would you rather nobody tell you and suffer from a lot of people turning away with no idea why? Or would you prefer people point out possible issues? It doesn't mean you have to agree, but data is important, and I think anyone with any community work experience could tell you the exact things I have written.
advael 8 hours ago [-]
The disdainful pile of stereotypes you've generated merely based on seeing the word "weed" in an example game is not throwing off my impression that you're engaging in culture war nonsense
Aiding that impression is that you are using the language of marketing to imply that this open-source project is intended as a product and trying to attract a market to adopt it, but that somehow the mere oblique possibility of invocation of a subculture that you personally dislike but which is also quite large would harm rather than help them do that if this were their aim. Personally, I don't see the mere presence of such an example game as having much meaning at all, and this whole "you wouldn't want to attract the wrong sorts of people" style argument is so classic a pearl-clutcher line that I almost wanted to call Poe's Law on it, but instead I took you to be earnest and seem to have judged correctly
Rest assured, I strive for honesty above all else, read whole posts before replying to them, and do my best to reason through what I am saying, have done so here, and continue to hold the impression I stated
This game reminded me of Gorilla Basic (GORILLA.BAS), it really brought back some childhood memories, so nostalgic! Unfortunately, this Kaboom Valley game seem to be unplayable! None of the buttons is working for me and only the computer is able to fire its projectiles over my head :(
The idea is that you could use a browser or custom client or whatever to connect to a game server
However, the demo games you have come across as too trivial and trashy to really show off what your system is capable of. I highly recommend putting a lot of effort into making something that shines there.
I didn't try logging into the studio since it was asking for username and stuff, so maybe the docs are there? I just wanted to read the docs before committing to a login and stuff to see if this is worth my time.
But will definitely add some more outside of the studio.
Thanks for checking it out!
Theoretically you could do this all client side too, but that would remove the magic of every game getting multiplayer for free
You'd still get multiplayer "for free", but it could be turned on and off. You could do it with zero code change for the actual games, they don't have to know.
It seems some of the games could do with a singleplayer mode that doesn't depend on the backend having free slots.
Just an idea from a fellow web games person!
Why reach for a server unless you truly need one! My multiplayer mode is p2p planned
fun
The initial idea was to make jackbox style games people could host on their computers and play on their phones in the same room over wifi.
Added to that and kind of did a whole lot of nothing productive around covid, just experiments that didn’t get deployed anywhere. And a podcast with over 100 episodes.
A few years ago my wife and I had our first kid, so I spent about a year polishing the self hosted stuff and figured I would put the project on the shelf.
So that’s pretty much what I did until around 6 months ago when I realized the actual Internet is fast enough to run these games outside of a LAN, and a lot of people including myself miss browser based games. That plus Claude making me way more effective in my limited free time led to the current state of things
Anyway nice concept. I’m also making web games (see my post history) so if anyone wanted to connect and discuss, send me an email (in profile too)
Just keep pushing, I know how hard it is
And Garry Kitchen's Game Maker
There’s a name I’ve not heard in a long, long time.
Its really amazing how inefficient those Complex 3D web games are.
Thanks for sharing! Cool that you haven't stopped working on this project after that long time. It gives me inspiration to work on my projects which I can't find time to finish.
I made the game I wanted, enjoyed it with family and friends, and then let COVID sweep it away. Congrats on continuing to work on it.
You can point out that something isn't a good look and not be a pearl-clutching culture warrior, although for people who feel strongly for/against it certainly doesn't feel this way. The marijuana culture in general is in my experience generally perceived as tacky and I personally know many who use but want nothing to do with the culture itself because it's a bunch of people whose humor essentially equates "weed = funny" in the same way kids equate "poo = funny". As usual it's a loud majority making the rest look bad, of course, and not a general rule about how marijuana users behave.
It is well known that similar people get along and stick together, and if you manage a community you will know that whatever you put on a pedestal decides what kind of new people are attracted, and what kind of people stay. If you want to build something community driven, this is something you will need to manage. Sure, you can put this kind of stuff on the home page, but your home page tells new users what the community looks like.
As an example you are probably familiar with, Reddit solved this using subreddits and the front page - the content shown to new users is almost by definition the most popular and agreeable content that most people like, which is good for adoption. I think we would both agree reddit would seem a lot less attractive if to new users if the user is shown a random selection of new posts from all across the site. Instead, it is the users responsibility to find niches that may fit them better than the average opinion. Most subreddits are out of sight for those who don't care/don't want to interact with it.
If you want to show off your product and want adoption, would you rather nobody tell you and suffer from a lot of people turning away with no idea why? Or would you prefer people point out possible issues? It doesn't mean you have to agree, but data is important, and I think anyone with any community work experience could tell you the exact things I have written.
Aiding that impression is that you are using the language of marketing to imply that this open-source project is intended as a product and trying to attract a market to adopt it, but that somehow the mere oblique possibility of invocation of a subculture that you personally dislike but which is also quite large would harm rather than help them do that if this were their aim. Personally, I don't see the mere presence of such an example game as having much meaning at all, and this whole "you wouldn't want to attract the wrong sorts of people" style argument is so classic a pearl-clutcher line that I almost wanted to call Poe's Law on it, but instead I took you to be earnest and seem to have judged correctly
Rest assured, I strive for honesty above all else, read whole posts before replying to them, and do my best to reason through what I am saying, have done so here, and continue to hold the impression I stated