Not only Bohemia Interactive released the code, they cleaned it up and ported to Windows x64 and Linux x64. That's amazing.
I’ve always had a bit of a soft spot for Bohemia Interactive. Their games have always had a charming “designed by a software engineer” feel, which I appreciate. Also, Operation Flashpoint was the reason I learnt to code and ended up having a career a software engineer, so I owe BI for that. My first real foray into programming was writing scripts, specifically to trigger unguided bomb releases from planes onto moving…
Bohemia Interactive: Cold War Assault Remastered Source Code on GitHub
31–40 of 50 posts
Re: Bohemia Interactive: Cold War Assault Remastered Source Code on GitHub
#32I actually worked on the Poseidon engine back when I was at BISim for serious game Virtual Battlespace 2 (VBS2) which was the spin off built for military training. The codebase here is so much cleaner and better organized than the version I remember wrestling with on a daily basis, and if you remember how buggy and unstable the DayZ launch was for users it can all be traced back to this since it was never envisioned…
Re: Bohemia Interactive: Cold War Assault Remastered Source Code on GitHub
#33Not only Bohemia Interactive released the code, they cleaned it up and ported to Windows x64 and Linux x64. That's amazing.
Re: Bohemia Interactive: Cold War Assault Remastered Source Code on GitHub
#34I actually worked on the Poseidon engine back when I was at BISim for serious game Virtual Battlespace 2 (VBS2) which was the spin off built for military training. The codebase here is so much cleaner and better organized than the version I remember wrestling with on a daily basis, and if you remember how buggy and unstable the DayZ launch was for users it can all be traced back to this since it was never envisioned…
I discovered Arma 2 when I was around 12. Its insane how much content was created with the limitations of the game engine. I also got into SWE partly due to hacking together SQF scripts :)
Re: Bohemia Interactive: Cold War Assault Remastered Source Code on GitHub
#35Not being a big gamer, I can'comment with much authority. I've played a bunch of Modern Warfare(s) and Battlefields, and Squad. But they all feel pointless to me when ARMA 3 exists. It's _so_ janky but in my mind way more immersive for reasons I just can't fully explain, though they are something to do with the fact that good comms is the key to fun and success. It's also got a pretty major learning curve...
Re: Bohemia Interactive: Cold War Assault Remastered Source Code on GitHub
#36Re: Bohemia Interactive: Cold War Assault Remastered Source Code on GitHub
#37I actually worked on the Poseidon engine back when I was at BISim for serious game Virtual Battlespace 2 (VBS2) which was the spin off built for military training. The codebase here is so much cleaner and better organized than the version I remember wrestling with on a daily basis, and if you remember how buggy and unstable the DayZ launch was for users it can all be traced back to this since it was never envisioned…
I worked with a guy at the Research Park in Central Florida who used to work for Bohemia Interactive (I forget on what). That's kind of funny, I remember him noting that it was a PITA to work with the Arma codebase.
Re: Bohemia Interactive: Cold War Assault Remastered Source Code on GitHub
#38Also anybody remember when this used to be called Operation Flashpoint ?
it had this weird paperish/dried out flat texture look that was quite characteristic and major appeal for me.
even now im amazed how much depth this game has , many many fun nights online
Re: Bohemia Interactive: Cold War Assault Remastered Source Code on GitHub
#39Earlier quoted context omitted.
The community makes the game. The actual game is much less important. The learning curve just acts as a filter that results in more like-minded people sticking with it.
That's kinda scary then considering how toxic some of the chat is! For me I think I simultaneously like the irreverence, but also the fact people take it very seriously. It's a weird combination. But yeah, sometimes the banter is not good.
it's the same with dayz.
Re: Bohemia Interactive: Cold War Assault Remastered Source Code on GitHub
#40I actually worked on the Poseidon engine back when I was at BISim for serious game Virtual Battlespace 2 (VBS2) which was the spin off built for military training. The codebase here is so much cleaner and better organized than the version I remember wrestling with on a daily basis, and if you remember how buggy and unstable the DayZ launch was for users it can all be traced back to this since it was never envisioned…
Wait, did you work in the Orlando office? ;) I worked with a guy at the Research Park in Central Florida who used to work for Bohemia Interactive (I forget on what). That's kind of funny, I remember him noting that it was a PITA to work with the Arma codebase.
It was a total PITA to work with but not due to the engine itself but some choices that were made over time to use IN CODE FEATURE SWITCHES since it was before git and branches. There were thousands of features added and controlled with statements like this:
#define ENABLE_FEATURE
#ifdef ENABLE_FEATURE // New feature implemented #else // Old code that is left around but probabbly won't work if the feature gets disabled #endif
Then multiply this choice by every...single...line...of code that had to be changed for one feature. It was nightmare until we could adopt and transition to Git with branches and clean it up.