Frictional Games Forum (read-only)
Problem running with Free assets - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: Open Source Collaboration (https://www.frictionalgames.com/forum/forum-27.html)
+--- Forum: Overture (https://www.frictionalgames.com/forum/forum-29.html)
+--- Thread: Problem running with Free assets (/thread-9528.html)



Problem running with Free assets - Cire - 08-01-2011

I want to run the engine with the freely licensed assets but it complains about a missing effect_white.jpg. I tried copying that file from the demo but strangely even then I get the same error. If I copy all the demo assets it works fine. How do I get it to work with the Free assets?
WBR


RE: Problem running with Free assets - Urkle - 08-01-2011

The free assets are only enough to run the demos and sample included in the HPL engine core.. To actually run Penumbra Overture you need to have a purchased copy of Penumbra Overture to have the assets from the game


RE: Problem running with Free assets - Cire - 08-02-2011

Hi Urkle,
Thank you for the answer. I am aware that the game assets themselves aren't included. What I want to is how I run the engine with the demos and sample you spoke about. I hope you understand what I mean.
WBR


RE: Problem running with Free assets - Urkle - 08-02-2011

in the HPL1Engune/tests folder is a serires of tests we included.

Basically to compile them you setup a new build target compiling the source files in the test directory, the common directory and linking to the HPL1 lib (with all it's dependencies)

So, for CMake (on linux) you would add this.

add_executable(GuiTest tests/GuiTest/GuiTest.cpp tests/Common/SimpleCamera.cpp tests/Common/stdafx.cpp)

target_link_libraries(GuiTest HPL OALWrapper Newton angelscript fltk GL GLU Cg CgGL ogg vorbis vorbisfile openal alut SDL SDL_ttf SDL_image)