Editing navmesh file (.nvm)

11/22/2016 13:42 sarkoplata#1
Lately i've been messing with the navmesh files to add some impassable objects to the map or make impasssable objects passable.
In short i am trying to change the collision of the objects located on the map.

I am using the navmesh structure released by @[Only registered and activated users can see links. Click Here To Register...] at github:
[Only registered and activated users can see links. Click Here To Register...]

for example i want to make bagh_barricade01.bsr passable:
[Only registered and activated users can see links. Click Here To Register...]

despite the documentation I noticed that impassable objects have Collision -1 and passable objects have Collision 0.

However changing these collisions are somehow not enough. nothing happens. If i make other changes, they work (if I increase the X pos of the barricade by 100, the impassable terrain is moved 100 units or so)

Any hint would be much appreciated :)
11/23/2016 03:01 DaxterSoul#2
Quote:
Originally Posted by sarkoplata View Post
despite the documentation I noticed that impassable objects have Collision -1 and passable objects have Collision 0.
The "collision" seems to be an indicator only.
It really comes down to [Compound(*.cpd)]->CollisionResource (*.bsr)->CollisionMesh(*.bms)->Collision(pointer.Collision).

You could replace the object (navmesh\object.ifo) with
Code:
res\bldg\europe\constantinople\euro_constan_bl_04.bsr
to make it walkable.
[Only registered and activated users can see links. Click Here To Register...]
11/23/2016 06:39 ​Exo#3
^ps; each and every object you replace will be walkable if you do it from object.ifo so before doing that check if there's only 1 object entry of that kind. You don't want a bugged map xd
11/23/2016 07:54 DaxterSoul#4
Therefore add your own entry to object.ifo and change desired objectID in the navmesh to your newly created entry.
11/23/2016 16:23 sarkoplata#5
Thanks for the help.
I've tried to give hardness to objects before this and failed as well. Lets say I added something hard to the .o2 file and it's visually shown in the game. However, when I add an entry to the navmesh file with the hard bsr, it's still passable. Im using the same uniqueIDs as well. What could cause it then?
11/23/2016 23:45 ​Exo#6
Quote:
Originally Posted by sarkoplata View Post
Thanks for the help.
I've tried to give hardness to objects before this and failed as well. Lets say I added something hard to the .o2 file and it's visually shown in the game. However, when I add an entry to the navmesh file with the hard bsr, it's still passable. Im using the same uniqueIDs as well. What could cause it then?
Lemme give you another hint that would make your life harder xd Adding the entry is not enough. You have to also link that new entry to the zones, right below the object entry list there's a linking block. You gotta find your way through adding it there. I'd really give you exact info but sadly I am not on my pc and I won't be for a few months. But I am sure that's what you're missing.
11/24/2016 18:22 sarkoplata#7
That really made my life harder xd

There are 3 zone blocks after the entry list. Im still trying to relate them
11/24/2016 20:08 vorosmihaly#8
Quote:
Originally Posted by sarkoplata View Post
That really made my life harder xd

There are 3 zone blocks after the entry list. Im still trying to relate them
Well,basically you only need the first zone block,because those are the zones that contain the entities,as far as I remember third zone block is terrain collision,and don't remember what the second zone block was for ^_^
11/28/2016 07:53 sarkoplata#9
It took me some time to add collision to map objects (mostly due to my retardiness) but I finally achieved my goal! Thanks everyone, especially Daxter :)
03/03/2018 15:26 WarTuneSro#10
any one got the tool and can upload it? pleas
02/04/2019 11:33 sarkoplata#11
Some people were asking me for this tool, even though I told them it was pure garbage. Maybe it has a use for you though. I just stumbled upon the source when I was checking some old hard drives.

Screen:
[Only registered and activated users can see links. Click Here To Register...]

Source code attached. (vs2017)
02/05/2019 17:32 spinal2#12
Quote:
Originally Posted by sarkoplata View Post
Some people were asking me for this tool, even though I told them it was pure garbage. Maybe it has a use for you though. I just stumbled upon the source when I was checking some old hard drives.

Screen:
[Only registered and activated users can see links. Click Here To Register...]

Source code attached. (vs2017)

Old version? error when modifield or Save Data.
02/05/2019 21:54 #HB#13
Quote:
Originally Posted by spinal2 View Post
Old version? error when modifield or Save Data.
Well, he shared it for people that wanna learn, not to use.

Also, if you knew how the tool reads the navmesh files, then ofc you should know how to edit them.
02/06/2019 17:09 sarkoplata#14
I don't remember what it did lately, could be an experimental thing i lately made that causing the error, cuz it was working fine. Check the source code.