A downloadable game for Windows

Download NowName your own price



Engage in Combat in Space and on the Ground

  • Single Player Ground Based Combat
  • Simplified RTS Style Tactical Combat
  • Source Code Included
  • Still In Development - but you can play for free now. But that means the gameplay experience and graphical quality will change (hopefully improve) over time.

Download

Download NowName your own price

Click download now to get access to the following files:

conflict 3049.zip 246 MB

Comments

Log in with itch.io to leave a comment.

I was able to run your game on Linux under Wine with simple script similar to 'game.bat'. I did not have to install anything else besides WINE 10.1. Script looks as follows:

```sh
#!/bin/sh
set -e
REALDIR="$(realpath "$(dirname "$0")")" 
export WINEPREFIX="$REALDIR"
cd "$REALDIR/files"
wine ./conflict3049.exe
```
I think it works just fine but I'm getting a lot of errors from TINYOBJ right when the game loads to main menu, similar to this one:

```
TINYOBJ: Error reading file 'circle.mtl': No such file or directory (2)
TINYOBJ: Failed to parse material file 'circle.mtl': -3
```
I'm not sure if there are any models missing in-game. However, the performance is pretty bad. Not sure if this is problem with Linux/WINE or with the game. I have i5 8600k and gtx1070ti and I'm getting ~50fps right after start.

 Pretty cool. Not sure how to play it though :D

Thanks for trying the game. The errors are normal. There's nothing missing - I simply removed the  .mtl files from the obj models so that the same texture wouldn't load multiple times...that's the only problem though - error messages about missing material files, but that's okay because I reference the materials myself in the code so it doesn't load more than once.


Not sure what to do about the performance but I imagine doing things under WINE is not going to be as fast as if it were on Windows. i'm running a 2014 Windows 7 machine and it runs fine. 


However thanks for trying the game. Yes, I do need to build in a tutorial system.

I just checked this on the same PC but with Windows11 and it seems that the real problem with framerate was caused by using "ambientocclusion=1" in "files/media/config.txt".

If I set it to standard 0, I don't see any issues (I get fps capped) but when set to 1 it tanks the fps (I get 58 on Win11 and 50 on Linux) which is noticeable.

So yea, running under WINE is not as fast as running on native Windows but the real problem was Ambient Occlusion.

Yeah, the ambient occlusion is an experimental feature, hence I have it switched off in the config file by default.

The visuals of the game are really captivating! I'm downloading it right away to give it a try.

Thanks Aucer, I hope you enjoy it.

(+1)

Hello, I'm the author of this game. If you like what you see and enjoy playing, I'd welcome feedback on what you liked/disliked so I can continue improving the gameplay.  I can't promise I'll do what you want but at least I'll know I'm on the right track if I get good feedback. from Matt.

Awesome work, and thanks for releasing the source code with it!

Thanks, I hope you enjoy playing with it.