VadersApp Posted July 24, 2013 Posted July 24, 2013 Hi Expired,I am the creator of Realistic Body System, which uses Bodyslide to give 30 bodytypes with armors and clothes to npcs.Let me get this straight.What i have understood is that your tool/mod uses bodyslide data to make a tri file that changes the triangles(meshes) ingame. I have tested that. runs fine for me.I am wondering what is necessary to add the tri files to different npcs wearing different clothes (compatible for bodyslide).Do we have to add tri files for every armor and clothes or does it scale bodyslide armors out of the box?So is it possible via papyrus to add a tri file only to lydia and another to formid "xyz" and if how?if that is possible i will resume working on RBS because this way i won´t have problems with huge memory usage because of thousands of different body meshes.Wonder if a tri file also could be used to change the path where body textures are loaded. If thats possible npcs could use different skins without creating a new body mesh.
Expired6978 Posted July 27, 2013 Author Posted July 27, 2013 Sorry I haven't had much to update with, I've gotten a little busy and haven't had time to find a function to invalidate the geometry of a loaded mesh in the world. The current method of flagging the geometryData as dirty/volatile seems to be causing some people to crash on load so I had to pull that version when I released it with RaceMenu. Hi Expired,I am the creator of Realistic Body System, which uses Bodyslide to give 30 bodytypes with armors and clothes to npcs.Let me get this straight.What i have understood is that your tool/mod uses bodyslide data to make a tri file that changes the triangles(meshes) ingame. I have tested that. runs fine for me.I am wondering what is necessary to add the tri files to different npcs wearing different clothes (compatible for bodyslide).Do we have to add tri files for every armor and clothes or does it scale bodyslide armors out of the box?So is it possible via papyrus to add a tri file only to lydia and another to formid "xyz" and if how?if that is possible i will resume working on RBS because this way i won´t have problems with huge memory usage because of thousands of different body meshes.Wonder if a tri file also could be used to change the path where body textures are loaded. If thats possible npcs could use different skins without creating a new body mesh. Each armor has to have its own TRI linked, I'm not really sure how this would be a problem for you since you technically need other bodies anyway. You can just link them to different TRI files, although if they are all made from the same base variant you could simply just use the same TRI file which would make your altered body the base. You cannot dynamically link the TRI files to specific actors, the TRI will be loaded and cached as long as the armor hosting the TRI is loaded, I haven't worked out a self-cleaning cache yet so any TRI loaded will remain in memory (Compared to other things it's really not that much, it doesn't multiply per actor as that's the point of caching). What you can do is dynamically morph Actor's body shape via Papyrus, this would probably be far more efficient as you would be using the same base body, then just giving other actors random or controlled variations of the morphs. As far as changing the body texture this is fairly trivial using NiOverride as it was designed specifically to modify shader properties of a loaded mesh on an Actor (Including textures). The thing about the body texture is that it is applied to any Armor with the BODY/HAND/FEET biped object that contains a child TriShape with the SkinTint shader type. It's not simply applied to a particular armor as the plugin was designed to do. While it's possible to do, the plugin cannot currently do that. I could certainly add that as a future feature. I think more recently SKSE got Get/SetSkin related functions, these might actually help with that. I believe the 'Skin' is what's used to find the body texture, you could just change the ActorBase's Skin override?
ITnTB Posted August 2, 2013 Posted August 2, 2013 hello, what is racemenubodymorph.esp utility? In skyrim nexus I didn't found this file in racemenu 2.0.2. Thank you
Monsto Brukes Posted August 2, 2013 Posted August 2, 2013 quoting for the notification (= question about tri files in general... I did this mod here (a nipple skin mod) and I want to redo it, but I was unsure of how to approach it. It hit me the other day that I could make some tri files for the end of the breast, set it up as a plugin for racemenu where you're basically choosing a skin, and build it so that certain aspects of the business end of the breast was modifiable. So like racemenu and ece allow you to do really tweaky shit with eyes and noses (for example) i could do the same with say nipple width, nip length, puffy etc. Do you think that would be possible?
Expired6978 Posted August 10, 2013 Author Posted August 10, 2013 Do you think that would be possible? Yes, if it involves moving vertices. This is the purpose of body morph, it would be similar to the nipple length and nipple size options to existing BodySlide sliders. I still haven't figured out a way to morph the geometry without having to flag some unstable flags that caused a lot of people to crash unnecessarily. I haven't really figure out what the heck "Additional Geometry" is for but it may be the solution.
Rokkon01 Posted August 13, 2013 Posted August 13, 2013 Hello, I tried your mod, and while I finally got it to display the sliders properly and without any CTD's on the race menu, the sliders won't do anything when used. I looked through this thread to find a solution, but the solutions given did not solve the problem. When looking through the papyrus logs, though, I found this: error: Native static function ClearMorphValue does not match existing signature on linked type NiOverride. Function will not be bound. Could this be causing the issue, and if so, how can it be fixed? Thank you in advance.
Kwengie Posted August 14, 2013 Posted August 14, 2013 can somebody help me? I have tested the BodyMorph and the Sliders don't work in the game. But the Sliders from the RaceMenu from Nexus http://skyrim.nexusmods.com/mods/29624/? are working.
CuddleBear92 Posted August 25, 2013 Posted August 25, 2013 great work and works perfectly with TBBP, HDT SOS for Females and animated cape. no problems with Racemenu either! thanks alot. hope this is the start on something new in modding.
Uriel Posted October 4, 2013 Posted October 4, 2013 Expired6978 looks like an incompatibility between netimmerse override pluging and latest hdtPhysicsExtensions(LLab thread here) was found. If both plugins are present, Skyrim crashes right after the loading screen. Does this mean you guys both modify the same part of Skyrim's process with your plugins? Is it possible to solve this incompatibility somehow? edit: the problem occurs with the latest nioverride.dll from Nexus. Have not tried other versions. About nioverride.dll : I don't know what's wrong. I capture an unhandled C++ except throw by nioverride itself. this is the full infomation:Unhandled exception at at 0x76E5C41F in TESV.exe: Microsoft C++ exception: std::__non_rtti_object at memory location 0x0018F02C.
Expired6978 Posted October 4, 2013 Author Posted October 4, 2013 Expired6978 looks like an incompatibility between netimmerse override pluging and latest hdtPhysicsExtensions(LLab thread here) was found. If both plugins are present, Skyrim crashes right after the loading screen. Does this mean you guys both modify the same part of Skyrim's process with your plugins? Is it possible to solve this incompatibility somehow? edit: the problem occurs with the latest nioverride.dll from Nexus. Have not tried other versions. About nioverride.dll : I don't know what's wrong. I capture an unhandled C++ except throw by nioverride itself. this is the full infomation: Unhandled exception at at 0x76E5C41F in TESV.exe: Microsoft C++ exception: std::__non_rtti_object at memory location 0x0018F02C. I don't get this error with my current version, or the existing version included with the RaceMenu. Is this error caused by the standalone nexus version, or the one included with RaceMenu? Also, I just literally threw the DLL into my plugins folder, I don't know if the mod needs any additional configuration files to work correctly.
Uriel Posted October 4, 2013 Posted October 4, 2013 You used the latest hdtPE from the baidu link? http://pan.baidu.com/share/link?shareid=3435982268&uk=2619899231#dir/path=%2FhdtPhysicsExtensions For installation, just drop both files into plugins.
Expired6978 Posted October 4, 2013 Author Posted October 4, 2013 You used the latest hdtPE from the baidu link? http://pan.baidu.com/share/link?shareid=3435982268&uk=2619899231#dir/path=%2FhdtPhysicsExtensions Yes, I only downloaded the DLL and placed it into my plugins folder, I did not put anything else there. The hooks from either DLL do not conflict.
Uriel Posted October 4, 2013 Posted October 4, 2013 You also need that hdtPhysicsExtensionsDefaultBBP.xml in plugins to see an actual effect ingame... I dunno then. For me, only one plugin is working. I think i'll install a clean Skyrim and experiment on it.
Expired6978 Posted October 4, 2013 Author Posted October 4, 2013 You also need that hdtPhysicsExtensionsDefaultBBP.xml in plugins to see an actual effect ingame... I dunno then. For me, only one plugin is working. I think i'll install a clean Skyrim and experiment on it. Ah, wrong loading screen. I thought you meant the start up screen. Yes it crashes. The physics plugin is messing with the stack in proximity to my hook, so when the hook goes to acquire an object off the stack, it's an invalid pointer and then it tries to use the RTTI info to convert from an object reference to an actor, which can't happen since the invalid pointer is pointing to garbage. My hook is taking parameters off the stack rather than direct function parameters, but this assumes the stack is not ruined. (Because the function doesn't provide enough parameters, all the ones required are before the function call, still on the stack)
Uriel Posted October 4, 2013 Posted October 4, 2013 Yeah... like hell i know what all this means... What i could understand is that hdtPE is doing unsafe stuff? My lack of technical english with inexpirience in programming prevents me from understanding further.Could you please talk to HydrogensaysHDT(his private messaging is not blocked) to solve this problem somehow? I'll point him to your post with explanation, but...
Expired6978 Posted October 4, 2013 Author Posted October 4, 2013 Yeah... like hell i know what all this means... What i could understand is that hdtPE is doing unsafe stuff? My lack of technical english with inexpirience in programming prevents me from understanding further. Could you please talk to HydrogensaysHDT(his private messaging is not blocked) to solve this problem somehow? I'll point him to your post with explanation, but... It's not an issue, I can probably solve this on my end.
Uriel Posted October 4, 2013 Posted October 4, 2013 Good to hear that. Thanks. I wonder if this type of problems will keep occuring because hdt is actively developing the physics plugin.
Expired6978 Posted October 5, 2013 Author Posted October 5, 2013 Good to hear that. Thanks. I wonder if this type of problems will keep occuring because hdt is actively developing the physics plugin. No, I did the hook really poorly for this particular hook this is my fault. This was the only hook I did this way, all others are function overwrites, which don't need to manipulate the stack. I didn't get the actor parameter from an offset of the stack pointer and instead got it from a stack register, which doesn't guarantee the object would be there. I've fixed it so it will acquire the actor from an offset of the stack, it works with HDT installed and also without. Edit: Fixed, uploaded to the standalone and the RaceMenu download.
WaxenFigure Posted October 5, 2013 Posted October 5, 2013 Good to hear that. Thanks. I wonder if this type of problems will keep occuring because hdt is actively developing the physics plugin. No, I did the hook really poorly for this particular hook this is my fault. This was the only hook I did this way, all others are function overwrites, which don't need to manipulate the stack. I didn't get the actor parameter from an offset of the stack pointer and instead got it from a stack register, which doesn't guarantee the object would be there. I've fixed it so it will acquire the actor from an offset of the stack, it works with HDT installed and also without. Edit: Fixed, uploaded to the standalone and the RaceMenu download. I'm not using this yet but am planning to soon so thank you for taking the time to fix this (and doubly thank you for the work on RaceMenu!).
nunu87 Posted October 5, 2013 Posted October 5, 2013 I wonder if its possible to modify aureole with this mod ?
yudaPAIN Posted November 9, 2013 Posted November 9, 2013 Ok, i look at this mod, read almost all replies, and i still dont really get it...... Where is the download? How do i get the sliders ingame? What are the required mods? What to do if i want to use this on the Manga body? The download is there, but it's still in testing: http://www.mediafire.com/download/uu58rdb44x2mmdg/BodyMorph.7z http://www.mediafire.com/download/ph191fxr5z262hf/nioverride.7z (Fixes potential crash when you load a game) The sliders are part of the included RaceMenuBodyMorphs plugin. The above are the 'required' mods. You don't unless manga body is a variant of an existing body that someone has made morphs for. (e.g. UNP or CBBE base) This mod is essentially the same as BodySlide but it works ingame. If your body doesn't have any BodySlide morphs then it's probably not going to work. There are cases where it MAY work, for example if your body is a variant of an existing body that has morphs, like UNP. I only have distributed UNP naked body morphs right now and the variant I used happens to be TBBP. It will work for CBBE as well once someone, (probably going to be me) converts the BodySlide bsd files into TRI files. personally I'm waiting until something a bit more comprehensible and user friendly comes out It depends what you're expecting from user friendly. One-click install sure, but it's not going to work for every body type and there isn't anything I can do about that but hope people can make the sliders for armors. I can't make it work for every body because that's just not possible, the bodies need shape delta data to do anything otherwise they're just a bunch of points in space. That data is different for every armor, the only one that can be reused is the naked body, since most armors are made around the existing body. Can I know How to install the BodyMorph?
Ryu Posted November 10, 2013 Posted November 10, 2013 To the OP - good work, I really like!First official Like from me and keep up the impressive coding work .
dorn Posted November 30, 2013 Posted November 30, 2013 This is very promissing looking! I'm a bit curious on one point though. Can you have different morphs on different npcs? You said it was re-hooked after weight so I'm hoping yes.
Expired6978 Posted November 30, 2013 Author Posted November 30, 2013 Yes they can have different morphs on different npcs. I still haven't figured out the internal process for morphing a static meshes in-game though so updating is rather taxing. The API is certainly there and is workable, it's just painful to make morph sets for and hardly anyone seems to be interested in actually making body slide capable bodies.
dorn Posted November 30, 2013 Posted November 30, 2013 Yes they can have different morphs on different npcs. I still haven't figured out the internal process for morphing a static meshes in-game though so updating is rather taxing. The API is certainly there and is workable, it's just painful to make morph sets for and hardly anyone seems to be interested in actually making body slide capable bodies. I'm guessing this mod could make bodyslide settings far more popular. Not to mention the upcoming studio tool in bodyslide 2.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.