Resources research

I’ve got some progress on Ace Combat resources research, have added code to unpack resources from base containers of AC4-6, besides Assault Horizon. Actual progress is shown here.  Actually, it’s a low priority task I do when I’m stalled with others, so I’m not sure how soon Open Horizon will actually use resources from previous games.

Ace_Combat_Tier_List_Short

Sound is a different story. I don’t want to mess with legal problems of CRI’s patented HCA proprietary codec until Open Horizon get any descent community around. Possibly, never. Upd: found an open source implementation under MIT license GARbro so I can port that to C++ and use in Horizon without messing with a suspicious source code from japanese boards.

Multiplayer… almost

ohmp
First multiplayer flight in Open Horizon’s history, with duct-tape implementation over boost::asio. While I’m resting(got red eyes lately, so trying to stay away from laptop for a while, at least at home), asked a friend to help me with network. He’s going to implement an important part for some miso soup. I’m not going to implement full multiplayer support right now (who will play it anyway?), but still think that it would be good to have multiplayer-aware architecture before I go deep into game mechanics.

Progress report

Screen-Shot-2014-04-15-at-4.45.21I’m glad to share with you my current progress. As you can see, I’ve loaded landscape (with hacks that I’ll fix later), loaded animations and added basic post-processing – color correction and FXAA. I also wrote linear approximation to AH’s flight model, it works pretty well, but another approach is required to get exact formulas. What’s next? Clouds, perhaps.

Continue reading

Textures

texturesInstead of working on a flight model, I’ve researched locations’ format and texture assignment in AH a bit. Looks trashy without proper shaders and post-processing, but it’s an another step on a long way. I wish I had more free time…

 

A friend of mine (I don’t know if game files’ modification is legal or not) also found another approach in flight model’s research – to modify plane’s parameters, run the game and see, how it affects plane’s performance. By the way, Assault Horizon doesn’t recognize my PS3 controller on PC and I can’t complete the first mission with a keyboard, lol. Thus I shall start with F-22′s params.
I hardly believe that AH can recognize my save files from PS3

Map loaded

Hurray! The title speaks for itself.map01I have learned how to load map files. Not everything, but enough for testing. Finally, I’m able to work on flight model! In fact, I don’t know how to do it. I shall start with simple manoeuvres and find relations between plane’s flight model parameters and speed/acceleration. I hope it’s possible to read AH’s memory at runtime and dump values to collect reference data. Memory address of each value can be found with ArtMoney but it’s not an easy way, so I’ll start with visual development of a simple model based on common assumptions and see where it goes.map02