@@ -577,27 +577,17 @@ void TerritoryDocument::DrawMenuBar(GuiState* state)
577
577
}
578
578
579
579
bool exportPressed = false ;
580
- bool exportPatchPressed = false ;
581
580
bool exportBinaryPatchPressed = false ;
582
581
583
582
exportPressed = ImGui::Button (" Export" );
584
- if (!isSPMap)
585
- {
586
- exportPatchPressed = ImGui::Button (" Export patch" );
587
- ImGui::SameLine ();
588
- gui::HelpMarker (" This option is going away in future versions. You should use 'Export binary patch (SyncFaction)' instead." , ImGui::GetIO ().FontDefault );
589
- exportBinaryPatchPressed = ImGui::Button (" Export binary patch (SyncFaction)" );
590
- }
591
583
592
584
MapExportType exportType;
593
585
if (exportPressed)
594
586
exportType = MapExportType::Vpp;
595
- else if (exportPatchPressed)
596
- exportType = MapExportType::RfgPatch;
597
587
else if (exportBinaryPatchPressed)
598
588
exportType = MapExportType::BinaryPatch;
599
589
600
- if (exportPressed || exportPatchPressed || exportBinaryPatchPressed)
590
+ if (exportPressed || exportBinaryPatchPressed)
601
591
{
602
592
exportTask_ = Task::Create (" Export map" );
603
593
if (std::filesystem::exists (CVar_MapExportPath.Get <string>()))
@@ -1667,6 +1657,11 @@ void TerritoryDocument::Inspector(GuiState* state)
1667
1657
u32 handle = selectedObject_.Property (" Handle" ).Get <u32>();
1668
1658
u32 num = selectedObject_.Property (" Num" ).Get <u32>();
1669
1659
ImGui::Text (fmt::format (" {}, {}" , handle, num).c_str ());
1660
+
1661
+ // Description
1662
+ string description = selectedObject_.Get <string>(" Description" );
1663
+ ImGui::InputText (" Description" , &description);
1664
+ selectedObject_.Set <string>(" Description" , description);
1670
1665
ImGui::Separator ();
1671
1666
1672
1667
if (ImGui::CollapsingHeader (" Bounding box" ))
@@ -2325,11 +2320,6 @@ void TerritoryDocument::ExportTask(GuiState* state, MapExportType exportType)
2325
2320
{
2326
2321
exportResult = ExportMapSP (state, CVar_MapExportPath.Get <string>());
2327
2322
}
2328
- else if (exportType == MapExportType::RfgPatch)
2329
- {
2330
- Log->error (" Failed to export {}. RfgPatch export isn't supported for SP maps." , mapName);
2331
- exportResult = false ;
2332
- }
2333
2323
else if (exportType == MapExportType::BinaryPatch)
2334
2324
{
2335
2325
Log->error (" Failed to export {}. Binary patch export isn't supported for SP maps." , mapName);
@@ -2342,10 +2332,6 @@ void TerritoryDocument::ExportTask(GuiState* state, MapExportType exportType)
2342
2332
{
2343
2333
exportResult = ExportMap (state, CVar_MapExportPath.Get <string>());
2344
2334
}
2345
- else if (exportType == MapExportType::RfgPatch)
2346
- {
2347
- exportResult = ExportPatch ();
2348
- }
2349
2335
else if (exportType == MapExportType::BinaryPatch)
2350
2336
{
2351
2337
exportResult = ExportBinaryPatch (state);
@@ -2380,7 +2366,7 @@ bool TerritoryDocument::ExportMap(GuiState* state, const string& exportPath)
2380
2366
string mapName = Path::GetFileNameNoExtension (Territory.Object .Get <string>(" Name" ));
2381
2367
2382
2368
// Steps: Export zones, extract vpp_pc, extract containers, copy zones to containers, repack containers, update asm_pc, repack vpp_pc, cleanup
2383
- const f32 numSteps = 8 .0f ;
2369
+ const f32 numSteps = 9 .0f ;
2384
2370
const f32 percentagePerStep = 1 .0f / numSteps;
2385
2371
2386
2372
exportPercentage_ = 0 .0f ;
@@ -2462,6 +2448,12 @@ bool TerritoryDocument::ExportMap(GuiState* state, const string& exportPath)
2462
2448
// Update asm_pc file
2463
2449
UpdateAsmPc (tempFolderPath + " \\ vpp\\ " + mapName + " .asm_pc" );
2464
2450
2451
+ exportPercentage_ += percentagePerStep;
2452
+ exportStatus_ = " Exporting editor data..." ;
2453
+
2454
+ // Write additional editor data that isn't preserved in zone files
2455
+ Exporters::ExportEditorMapData (Territory.Object , tempFolderPath + " vpp\\ " );
2456
+
2465
2457
exportPercentage_ += percentagePerStep;
2466
2458
exportStatus_ = " Repacking " + terrPackfileName + " ..." ;
2467
2459
@@ -2480,58 +2472,6 @@ bool TerritoryDocument::ExportMap(GuiState* state, const string& exportPath)
2480
2472
return true ;
2481
2473
}
2482
2474
2483
- constexpr u32 RFG_PATCHFILE_SIGNATURE = 1330528590 ; // Equals ASCII string "NANO"
2484
- constexpr u32 RFG_PATCHFILE_VERSION = 1 ;
2485
- bool TerritoryDocument::ExportPatch ()
2486
- {
2487
- exportPercentage_ = 0 .0f ;
2488
-
2489
- // Export zone files
2490
- string terrPackfileName = Territory.Object .Get <string>(" Name" ); // Name of the map vpp_pc
2491
- string mapName = Path::GetFileNameNoExtension (terrPackfileName); // Name of the map
2492
- string exportFolderPath = CVar_MapExportPath.Get <string>(); // Folder to write final patch file to
2493
- if (!Exporters::ExportTerritory (Territory.Object , exportFolderPath))
2494
- {
2495
- LOG_ERROR (" Map patch export failed! Map export failed for '{}'" , mapName);
2496
- return false ;
2497
- }
2498
-
2499
- string zoneFilePath = fmt::format (" {}\\ {}.rfgzone_pc" , exportFolderPath, mapName);
2500
- string pZoneFilePath = fmt::format (" {}\\ p_{}.rfgzone_pc" , exportFolderPath, mapName);
2501
- std::vector<u8> zoneBytes = File::ReadAllBytes (zoneFilePath);
2502
- std::vector<u8> pZoneBytes = File::ReadAllBytes (pZoneFilePath);
2503
- if (zoneBytes.size () == 0 || pZoneBytes.size () == 0 )
2504
- {
2505
- LOG_ERROR (" Map patch export failed! More or both exported zone files are empty. Sizes: {}, {}" , zoneBytes.size (), pZoneBytes.size ());
2506
- return false ;
2507
- }
2508
-
2509
- // Merge zone files into single patch file. Meant to be used with the separate RfgMapPatcher tool. Makes the final exports much smaller.
2510
- // Write patch file header
2511
- BinaryWriter patch (fmt::format (" {}\\ {}.RfgPatch" , exportFolderPath, mapName));
2512
- patch.Write <u32>(RFG_PATCHFILE_SIGNATURE);
2513
- patch.Write <u32>(RFG_PATCHFILE_VERSION);
2514
- patch.WriteNullTerminatedString (terrPackfileName);
2515
- patch.Align (4 );
2516
-
2517
- // Write zone file sizes
2518
- patch.Write <size_t >(zoneBytes.size ());
2519
- patch.Write <size_t >(pZoneBytes.size ());
2520
-
2521
- // Write zone file data
2522
- patch.WriteSpan <u8>(zoneBytes);
2523
- patch.Align (4 );
2524
- patch.WriteSpan <u8>(pZoneBytes);
2525
- patch.Align (4 );
2526
-
2527
- // Remove zone files. We only care about the final patch file with this option
2528
- std::filesystem::remove (zoneFilePath);
2529
- std::filesystem::remove (pZoneFilePath);
2530
-
2531
- exportPercentage_ = 1 .0f ;
2532
- return true ;
2533
- }
2534
-
2535
2475
bool TerritoryDocument::ExportBinaryPatch (GuiState* state)
2536
2476
{
2537
2477
// Make sure folder exists for writing temporary files
0 commit comments