Jump to content

franck22000

Members
  • Posts

    271
  • Joined

  • Last visited

Posts posted by franck22000

  1. Not this is not a skybox texture, those are real independants clouds ;) (not volumetric though)

     

    Dynamic coloration and sizes according to the weather overcast, sun position and time of day.

     

    post-16-0-15769300-1381175643_thumb.png

    • Upvote 3
  2. Thanks Paramecij and Pixel Perfect, yes i work on full time on this.

     

    Here is the 13 minute long video that i promised and for the first time it was captured and encoded in HD, so dont forget to watch it in 1080p if you can ! No zombies/monsters in this video just a simple exploration, i keep the suprise for the next one wink.png

     

     

    (There is some little freezes but this is due to the recording... my hard drive is slow as hell and i have some problems with i record videos, that's why the gun movement is not so smooth in the video, without the recording i get a solid and stable 50 - 60fps, my optimisations on my custom grass/bushes system and my custom LOD management and contribution culling system is starting to pay smile.png)

    • Upvote 7
  3. Time for some progress update :)

     

    I have now recruited a 3D artist to help me to focus more on the programming side, i will introduce him later :)

     

    Even if i have now a talented 3D artist, im still a texture / coloring maniac and i have done several colors changes on various texture, the result is in my opinion very good, i have now a very nice balance beetween green and oranges shades i it look amazing in game.

     

    On the gameplay side a lot of changes as been made, the weapons mecanics are now 100% finished, everything is working, reloading, dynamic weapon bobbing, procedural weapon animations.

    Some goodies like camp fires are done too, and last but not least the Monsters integration has began.

    There is a tons of other improvements that i dont have time to describe, like some huges improvements regardings fields generation, you can now see some straw bales in fields and they are delimited by some very nice bushes and tree lines. Electric poles can be seen along the roads and a ton of details like that.

     

    I have made some improvement over terrain base map (sattelite map) procedural generation so it generate some cool brown areas of dirt mixed to green color of grass, with this forests look much more real now.

     

    My next task will be the random building placement generation, and then the next time i will post here you should see a much more populated world :)

     

    Here some screenshots for you guys, yes everything you see is proceduraly generated and nothing is placed "by hand" ;)

     

    post-16-0-00790500-1380791556_thumb.jpg

     

    post-16-0-80173200-1380791578_thumb.jpg

     

    post-16-0-22012900-1380791610_thumb.jpg

     

    post-16-0-16823700-1380791645_thumb.jpg

    • Upvote 2
  4. Oh sorry ! Well it is strange that std::sqrt does not work since it is from the c++ standard library.

     

    You can use this square root function then it should work if you dont need a very accurate precision smile.png

     

    float sqrt(float x)
    {
    union
    {
    int i;
    float x;
    } u;
    u.x = x;
    u.i = (1<<29) + (u.i >> 1) - (1<<22);
    
    u.x = u.x + x/u.x;
    u.x = 0.25f*u.x + x/u.x;
    
    return u.x;
    } 

    • Upvote 1
  5. Thanks for the kind comments, it really help me as i slowly but surely aproach an alpha release by october/november and i am working like a crazy guy on this since a long time. Finaly the light at the end of the tunnel ;)

  6. Some progress update of what has been done last week ! smile.png

     

    - NavMesh Integration 100% finished and handle everything, terrain and objects geometry

    - Base zombie AI

    - Zombies hitboxes system to detect shots in zombies bodies parts (head, legs, arm...)

    - Zombie steering system

    - Dynamic navmesh update according to objects driven by PhysX (some littles bugs to fix here)

    - Zombies animations system with multiple animations blending support

    - Melee weapons support (still WIP)

    post-16-0-00125600-1379357293_thumb.jpg

    • Upvote 2
  7. Thanks Paramecij, if you have any question i will answer it by private message or chat smile.png

     

    So some progress were made the last two days i have now those features added:

     

    - Bullet trajectory deviation when it penetrate a surface

    - Bullet deflection when the angle between the impact normal and bullet trajectory is small with of course a loss of the bullet velocity

    - Weapon complete animation system, so now, reload, fire animations and such are working

    - Recoil system

    - Tracer bullets support

    - Bullets holes decals according to surfaces types and the bullet diameter / caliber

     

    I am now adding melee weapons support, that should be done quickly.

  8. Hello, thanks diedir, i am a former developper of Bohemia Interactive Studio (Operation Flashpoint, ArmA series...) so ballistic programming was familiar to me :)

     

    As it is a commercial project i cant share anything massive yet, but if you try to integrate physx 3 in your project i can provide support. PhysX 3 is not particularly difficult to add to LE2, but it is a long task and you need to be very cautious with your code and take your time to add it properly, PhysX 3 is very well documented in my opinion.

     

    Regarding the release date of the first public alpha version, i cant give you a precise date but it will be before november for sure.

  9. http://www.youtube.com/watch?v=J35RztQacmo



    I have just finished the basic integration of my new ballistic system for weapons, ballistic simulation is now quite complex and realistic, it take in account:

    - Bullet mass
    - Bullet diameter
    - Bullet Velocity at weapon muzzle
    - Air resistance

    Additionnal feature are supported like a penetration system according to differents surface type (concrete, wood...), the penetration system still WIP, the recoil system still in WIP too, that's why the bullet is not deviated yet when it penetrate a surface. And bullet interaction with PhysX 3 is done.

    NPC's will be done soon !

    Important: the video is captured in debug mode so no fancy graphics here smile.png
    • Upvote 6
×
×
  • Create New...