Cosmoteer: Starship Architect & Commander

Cosmoteer: Starship Architect & Commander

Dr 23 listopada 2022 o 20:28
question about the game engine
Is this game using unreal engine or unity? I'm just curious
< >
Wyświetlanie 1-15 z 20 komentarzy
Atlessa 23 listopada 2022 o 21:08 
I just took a peek at the game's folder structure and it doesn't seem like either of those two engines.

... unless it's UE5 and they DRASTICALLY changed folder structure since UE4, but I somehow doubt this tiny little indie game got access to UE5 before anyone else :D
umop-apisdn 23 listopada 2022 o 23:18 
Glancing through the open source software listed in the credits makes me think it might be an in-house, home-grown solution.
Booster 24 listopada 2022 o 1:34 
I believe it's built in C# or C++. The engine is not open sourced.
GreatPalm 24 listopada 2022 o 2:27 
i think unity will lag a lot with that much of small colliders
hellatze 24 listopada 2022 o 3:00 
why in house engine though
Dr 24 listopada 2022 o 7:58 
thanks for the response.
Morkonan 24 listopada 2022 o 11:50 
Początkowo opublikowane przez hellatze:
why in house engine though

There's no reason to use a third-party engine if a developer can code one of their own. Why opt-in to playing a third-party company royalties for using its engine if one doesn't actually need to use their engine?
Walt Destler  [producent] 24 listopada 2022 o 12:52 
It's a custom game engine written in C#. It's called "Halfling".
Morkonan 24 listopada 2022 o 15:13 
Początkowo opublikowane przez Walt Destler:
It's a custom game engine written in C#. It's called "Halfling".

It seems to perform pretty darn well, IMO, for what it's doing. Congrats on that! (I guess you've kind of had a while to optimize it. :))
Walt Destler  [producent] 26 listopada 2022 o 14:43 
Początkowo opublikowane przez Morkonan:
It seems to perform pretty darn well, IMO, for what it's doing. Congrats on that! (I guess you've kind of had a while to optimize it. :))
Thanks! Fun fact: Cosmoteer's engine predates Cosmoteer. I originally started working on it in 2005 (IIRC) as the engine for a PvP tetris-like I tried (and failed) to design.
saideron 26 listopada 2022 o 16:24 
Początkowo opublikowane przez Walt Destler:
Początkowo opublikowane przez Morkonan:
It seems to perform pretty darn well, IMO, for what it's doing. Congrats on that! (I guess you've kind of had a while to optimize it. :))
Thanks! Fun fact: Cosmoteer's engine predates Cosmoteer. I originally started working on it in 2005 (IIRC) as the engine for a PvP tetris-like I tried (and failed) to design.

That explains so much, lol. Amazing work on the game. o7
Morkonan 27 listopada 2022 o 12:47 
Początkowo opublikowane przez Walt Destler:
Początkowo opublikowane przez Morkonan:
It seems to perform pretty darn well, IMO, for what it's doing. Congrats on that! (I guess you've kind of had a while to optimize it. :))
Thanks! Fun fact: Cosmoteer's engine predates Cosmoteer. I originally started working on it in 2005 (IIRC) as the engine for a PvP tetris-like I tried (and failed) to design.

Thanks for the history!

I remember reading a post/blog/something of your's years ago. (2017, probably) where you talked about this. IIRC, that first early incarnation wasn't ever released, just sort of doodled with by you, but Cosmoteer eventually evolved from it.

PVP Tetris... :) It sounds like a PVP-"Pong" or "Block Destroyer" game that comes to mind, but I don't recall the name. (From the Long Ago Times, before Teh Interwebz, but around the time of online dial-up BBSs.)
Walt Destler  [producent] 27 listopada 2022 o 14:10 
Początkowo opublikowane przez Morkonan:
Początkowo opublikowane przez Walt Destler:
Thanks! Fun fact: Cosmoteer's engine predates Cosmoteer. I originally started working on it in 2005 (IIRC) as the engine for a PvP tetris-like I tried (and failed) to design.

Thanks for the history!

I remember reading a post/blog/something of your's years ago. (2017, probably) where you talked about this. IIRC, that first early incarnation wasn't ever released, just sort of doodled with by you, but Cosmoteer eventually evolved from it.

PVP Tetris... :) It sounds like a PVP-"Pong" or "Block Destroyer" game that comes to mind, but I don't recall the name. (From the Long Ago Times, before Teh Interwebz, but around the time of online dial-up BBSs.)
It looked like this: https://waltdestler.com/images/tetrik.jpg
Vaso 4 marca 2023 o 8:24 
I have been testing your game and I think it's really cool, especially considering it's currently using .NET 7 (latest game patch?). I'm a big fan of .NET and I've also noticed that upgrading to the newest version of .NET can often give a performance boost for free which is super cool.

I had a couple of ideas for you, or any .NET game engine developer, that I think could be implemented fairly easily and I believe you can have a working experiment, maybe just in a few hours.

I wonder why games don't have multi screen support in a way, that on each screen is something else.

You can create an optional extra game screen(s), without affecting the game engine. Well, I will leave the true performance and security impact with you as I am not a game developer.

I think it would be really cool if players could have a secondary web-based screen(s) showing game stats, crew stats, or anything else they might find useful and you can easily push anything to these screens through SignalR. You can decide how LIVE it will be, how often it should be updated/refreshed. In the current .NET, it is easy to host a local website which can then receive any communication through SignalR Hub from the game engine.

- the secondary screen(s) will be web based (much easier to implement, and isolated from the game engine)
- can be maximised/full screen with F11 (Chrome)
- it can show some basic game stats, like what is in the storage, some crew stats, literally anything you want keep your eye on and is important but we don't want to have it on the primary screen
- it can be read only, or even interactive as you can push through SignalR back to the game engine 🤣
- maybe, you could allow to host this web client, so people could use own public domain (own hosting) or hosted by you, and they could get people interact with your game while you are playing, this could be very cool for any game streamers who would like their visitors interact with the game, e.g. adding their names, or even interact in the fight, or organising some ships, the sky's the limit

Well, maybe you can be inspired by this and will be the first one to implement it as it is just a freebie from .NET 😉.

Ohh, and if you or your team are interested in sharing your .NET experience and knowledge in game development, I'd recommend checking out the .NET Stride game engine community on the website or Discord.

Thanks for making such a great game!
Ostatnio edytowany przez: Vaso; 4 marca 2023 o 8:27
madMike 9 lipca 2023 o 2:18 
Początkowo opublikowane przez Walt Destler:
Początkowo opublikowane przez Morkonan:
It seems to perform pretty darn well, IMO, for what it's doing. Congrats on that! (I guess you've kind of had a while to optimize it. :))
Thanks! Fun fact: Cosmoteer's engine predates Cosmoteer. I originally started working on it in 2005 (IIRC) as the engine for a PvP tetris-like I tried (and failed) to design.
I love your determination. It is inspiring.
< >
Wyświetlanie 1-15 z 20 komentarzy
Na stronę: 1530 50