-
December 1st, 2024, 20:36 #1
UWP Import Tool & Issues with the ruleset
I have created an extension that will take JSON data from travellermap.com (for example: https://travellermap.com/data/spinward%20marches/2124) which would give you this:
Code:{"Worlds":[{"Name":"Lunion","Hex":"2124","UWP":"A995984-D","PBG":"810","Zone":"","Bases":"NS","Allegiance":"ImDd","Stellar":"G5 V","SS":"K","Ix":"{ 5 }","Ex":"(C8H+3)","Cx":"[7E3B]","Nobility":"BEF","Worlds":11,"ResourceUnits":4896,"Subsector":10,"Quadrant":5,"WorldX":-108,"WorldY":-56,"Remarks":"Hi In Cp Ht","LegacyBaseCode":"A","Sector":"Spinward Marches","SubsectorName":"Lunion","SectorAbbreviation":"Spin","AllegianceName":"Third Imperium, Domain of Deneb"}]}
If I just import the data to fill in the record and restart FGU, I can see the proper data in the db.xml file:
Code:<id-00003> <allegiances type="string">Third Imperium</allegiances> <bases type="string">N S</bases> <domain type="string"> Domain of Deneb</domain> <hexlocation type="string">2124</hexlocation> <name type="string">Lunion</name> <sector type="string">Spinward Marches</sector> <subsector type="string">Lunion</subsector> <system type="string">G5 V</system> <trade_codes type="string">Hi In Cp Ht</trade_codes> <travel_code type="string">G</travel_code> <uwp type="string">A995984-D</uwp> </id-00003>
The extension works well, and it could be a great tool for these annoying issues. I am unsure what is happening under the ruleset's hood, but something is not working properly. I don't think I really need help with my extension, per se, just for someone to look at what is happening with the ruleset.Last edited by Stargrove; December 1st, 2024 at 21:00.
-
December 1st, 2024, 20:54 #2
As a test, I took the data above and pasted it into a new campaigns db.xml with no modules or extension loaded, opened up the System entry, and tabbed through all the fields several times and can easily reproduce the issues I described above (Hex and Bases entries disappearing, and Trade Code data getting dropped). Hopefully, someone can figure out why this is happening.
Code:<worlds> <id-00002> <allegiances type="string">Third Imperium</allegiances> <bases type="string">N S</bases> <domain type="string"> Domain of Deneb</domain> <hexlocation type="string">2124</hexlocation> <name type="string">LunionTest</name> <sector type="string">Spinward Marches</sector> <subsector type="string">LunionTest</subsector> <system type="string">G5 V</system> <trade_codes type="string">Hi In Cp Ht</trade_codes> <travel_code type="string">G</travel_code> <uwp type="string">A995984-D</uwp> </id-00002> </worlds>
-
December 5th, 2024, 04:24 #3
Supreme Deity
- Join Date
- Mar 2007
- Posts
- 21,507
I've asked Tarkonian to take a first look at this using the steps you described.
Regards,
JPG
-
December 5th, 2024, 05:08 #4
It took a few shots but I was able to recreate this, and then I was able to figure out the "most likely" culprit for it. But it's going to take me a hot-minute to unwind what this function is doing and how to fix it. I will try to have an update done for this soon. For now, when a value changes on that record, it calls a "rebuildUWP" function that rewrites the sheet. If you create the world and then lock the record, it should stop it from overwriting anything you set up in the DB with JSON like you were doing. Not ideal, but for now that should stop it from rewriting everything on you."If you love it, mod it."
Ruleset Developer
Smiteworks
-
December 5th, 2024, 06:27 #5
Supreme Deity
- Join Date
- Mar 2007
- Posts
- 21,507
Just to be clear, this was something that existed in the ruleset before we took it over; so we're trying to figure out why it was implemented in the first place and how to prevent it from making those changes when undesired.
Regards,
JPG
-
December 6th, 2024, 17:51 #6
Thank you for looking into this. I will investigate how to lock a record to prevent data loss.
-
December 6th, 2024, 17:52 #7
You say, "before we took it over". Does this mean that MBM is no longer the primary dev on the ruleset?
-
December 6th, 2024, 20:40 #8
Supreme Deity
- Join Date
- Mar 2007
- Posts
- 21,507
As far as I know, he stepped down from direct development with Mongoose; so we've taking over maintenance until another developer is interested in taking over to add more features.
Regards,
JPG
-
December 10th, 2024, 23:50 #9
Okay, sorry for the slow response but I have two different fixes for you.
The issue is your import tool is trying to fill in details that the ruleset is trying to auto-generate for you. If you put a numbercode in the UWP section and then tab away from it, it will use the numbers to auto-generate a new world for you, and does not care if anything is already there.
Solution 1: I have added a houserule to disable the UWP Auto-Generation (UWPAG) completely. This will completely turn it off.
image_2024-12-10_164712223.png
Solution 2: You may want to keep using the UWPAG feature after importing, so I have created a secret DB flag for you to use with your import tool. Your tool will have to add this to the DB data. If you set the flag to 1 it will tell the UWPAG to skip that record and not auto-generate anything for it. This will let you import the records, but keep auto-generating new worlds as you need them without disabling everything. The flag is:
<skipUWPAG type="number">1</skipUWPAG>
image_2024-12-10_164919383.pngLast edited by Tarkonian; December 11th, 2024 at 00:00.
"If you love it, mod it."
Ruleset Developer
Smiteworks
-
December 11th, 2024, 00:44 #10
I appreciate you looking into this.
I am beginning to think that it may be better if I could not enter any data into the UWP field (<uwp /> db.xml field) at the top of the form and instead parse out the UWP JSON to create the entries in the individual UWP fields below the Hex Location field. That would not be that hard to do and could eliminate the issue I was seeing. I will try that out and see what happens. At one point I was filling in those individual entries, but it just seemed easier to fill in the one field since that is how it is in the JSON.
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks