Bluscream Posted April 24, 2017 Share Posted April 24, 2017 (edited) Hello, i use OpenIV since two years now for GTA IV and V and have to say it's an awesome editor. What i'm missing is a non-text based XML Viewer/Editor. As far as i have seen most GTA XML's follow the same format <?xml version="1.0" encoding="UTF-8"?><MainElement> <SubElement> <Item> <ItemData>AIRTUG</ItemData> </Item> </SubElement></MainElement> So i thought i can't be that hard to write a proper generic editor for that. I came up with this design (in .NET) https://github.com/GTACoop/GTA-XML-Editor/ You may wonder why i ask this in the OpenIV forum. Simply because i think OpenIV is the best multi-(editor/tool) for GTA and i would prefer having this XML Editor in it instead of a different file. If the OpenIV devs won't answer to this or say no, i will repost this to a more generic mod forum Edited April 24, 2017 by Bluscream Link to comment Share on other sites More sharing options...
Bluscream Posted April 24, 2017 Author Share Posted April 24, 2017 (edited) Regarding the merge functionality: Let's say this is the original file: <?xml version="1.0" encoding="UTF-8"?><CEventDataManager> <eventResponseTaskData> <Item type="CEventDataResponseTaskGunAimedAt"> <Name>RESPONSE_TASK_GUN_AIMED_AT</Name> <Face id="1"></Face> </Item> </eventResponseTaskData> <eventDecisionMakerResponseData> </eventDecisionMakerResponseData> <eventDecisionMaker> </eventDecisionMaker></CEventDataManager> and this the file i want to merge into it: <?xml version="1.0" encoding="UTF-8"?><CEventDataManager> <eventResponseTaskData> <Item type="CEventDataResponseTaskGunAimedAt"> <Name>RESPONSE_TASK_NONE</Name> </Item> </eventResponseTaskData></CEventDataManager> the end result should be: <?xml version="1.0" encoding="UTF-8"?><CEventDataManager> <eventResponseTaskData> <Item type="CEventDataResponseTaskGunAimedAt"> <Name>RESPONSE_TASK_NONE</Name> <Face id="1"></Face> </Item> </eventResponseTaskData> <eventDecisionMakerResponseData> </eventDecisionMakerResponseData> <eventDecisionMaker> </eventDecisionMaker></CEventDataManager> Edit: Feature Request filed at http://openiv.com/bugs/view.php?id=461 Edited April 24, 2017 by Bluscream Link to comment Share on other sites More sharing options...
GooD-NTS Posted April 30, 2017 Share Posted April 30, 2017 I think it is better to make this separated from OpenIV. And since you already done something you better to move this topic into Tools section. (I think you can report your own first post and ask moderators to move the topic) Link to comment Share on other sites More sharing options...
Bluscream Posted April 30, 2017 Author Share Posted April 30, 2017 Why would you want us to different tools for everything if OpenIV claims to be the R* MultiTool? Too lazy to build it or do you got a real argument why the current way of manually text editing is better. Link to comment Share on other sites More sharing options...
GooD-NTS Posted May 1, 2017 Share Posted May 1, 2017 Because you talks about general XML editing not specific for GTA V or something. And we don't have time for this, we better spend it to make support for more GTA V formats and tools. blace90 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now