Earlier quoted context omitted.
In a later comment, the poster noted that the game works via Proton.
Saw that, but then why not mark it as supported on Linux? For me, €30 is fairly steep for something that's bound to give me problems that I have no reason to expect they'll feel like solving.
Show HN: A friend and I spent 6 years making a simulation game, finally released
281–289 of 289 posts
Re: Show HN: A friend and I spent 6 years making a simulation game, finally released
#282Earlier quoted context omitted.
It's less a question of balance and more a question of whether the feature actually properly fits the rest of the game. Factorio is designed around the attack waves being a motivator to get better tech quickly - you want to bee-line flame turrets and develop the tech to get self-refilling turrets and self-repairing walls... In satisfactory the enemies only exist to gate off certain map areas and they do that very poo…
If they wanted combat to be a thing, they could use it as a gate - "You can't build here, enemies are nearby". I think they could actually make combat a fun part of exploration in that way, by giving you a limited area you can build in initially and giving you rewards in new buildable land from combat. It would vastly change the game, though, which is perhaps not a bad thing.
Building multi-genre games is a really hard problem.
Re: Show HN: A friend and I spent 6 years making a simulation game, finally released
#283Earlier quoted context omitted.
If they wanted combat to be a thing, they could use it as a gate - "You can't build here, enemies are nearby". I think they could actually make combat a fun part of exploration in that way, by giving you a limited area you can build in initially and giving you rewards in new buildable land from combat. It would vastly change the game, though, which is perhaps not a bad thing.
I think a big problem you'll hit here is that a large number of gamers are generalists - we enjoy playing a variety of games and have a variety of skills accumulated from that experience. That means that the FPS portions of the game are either going to match our challenge level and discourage factory builder specialists or it's going to be extremely underwhelming for FPS players. Factory builder specialists - those f…
Re: Show HN: A friend and I spent 6 years making a simulation game, finally released
#284There are some basic things broken in the graphics engine: 1) Turning vsync "on" doesn't have the intended effect. There's still very visible tearing half way down the screen. 2) Turning vsync on in combination with full-screen mode results in a hideous stuttering when turning the viewport with the mouse. It looks like you got the swap chain sequence.. backwards? As in... swapping the "most recent" frame.. and then a…
>"As a former game engine developer, my advice is that with both DirectX and OpenGL there is generally only "one right way" to do certain things such as managing a swap chain. Yet, somehow, game developers manage to get this consistently wrong and never seem to test/fix it. >Test, test, test! Plug in multiple monitors. With different resolutions. Drag your game around between them. Try laptops with hybrid (NVIDIA+Int…
Re: Show HN: A friend and I spent 6 years making a simulation game, finally released
#285Earlier quoted context omitted.
Is this a joke? Apple with M1 and iterations is changing the industry.
Like it was mentioned earlier, yes M1 kicked off for one year all the others in terms of performance - but hey, now we have 12th gen Intel Core H-series processors which have caught up (and overtook already from what I've seen in benchmarks) Apple's M-serie processors.
Re: Show HN: A friend and I spent 6 years making a simulation game, finally released
#286Earlier quoted context omitted.
We do use Unity that does lots of heavy lifting for you regarding porting to other platforms. However, it's not always that easy as checking a box. For example some shader optimizations may be specific to DirectX. File system works differently (no "User/Documents" on Mac). Or issues with native libraries. Our game does work on Linux Proton though, that was a surprise to us.
Proton with DV9K is - for a few games - faster than native windows. I don't fully understand it, but apparently the process of automatically rewriting shaders from DX to Vulcan can speed things up.
Re: Show HN: A friend and I spent 6 years making a simulation game, finally released
#287Re: Show HN: A friend and I spent 6 years making a simulation game, finally released
#288Earlier quoted context omitted.
What games even do continuous saving ?? Otherwise I've noticed annoying flickering of far away molten metal, but that was on a Twitch stream, which might be the cause ?
No need to do continuous saving. Just have "exit" also save the game state at the same time.
Re: Show HN: A friend and I spent 6 years making a simulation game, finally released
#289Just noting that I have interest in multiplayer support similar to Factorio or Satisfactory where players work towards a common goal, and also have purchased with that not being a feature per the road map. These types of games make for good time passers while conversating with distant friends.
Multiplayer is a big topic and it is obviously on our minds. The big questions is what type of multiplayer would be the best for this kind of game? Would it be coop where each player would start on their corner of the map? Or would it be shared factory? Of maybe each player with its own island + trading? Also, it is technically very challenging, since the entire simulation must be perfectly deterministic. We actually…