Cliente UE (foco da frente):
- FZMMOMapDef + FZMMOMapSpawn (Source/ZMMO/Data/World/MapDef.h) — row do
DT_Maps com MapId/DisplayName/ClientLevel/Spawns[] taggeados
- DT_Maps.uasset (Content/ZMMO/Data/World/) — 1 row "TestWorld" mapId=1
apontando pra L_TestWorld + spawn "default" em (0,0,200)
- L_TestWorld movido: /Game/ThirdPerson/TestWorld -> /Game/ZMMO/Maps/World/L_TestWorld
(75 ext actors WP duplicados, original deletado)
- ZMMOCharSummary.MapName (FString) -> MapId (int32)
- UIUserLobbyScreen_Base parseia uint16 mapId no S_CHAR_SELECT_OK + chama
Flow->TravelToMapById(mapId) + Flow->SetPendingSpawnPose(pos, yaw)
- UIFrontEndFlowSubsystem: MapsTableAsset (config), FindMapDef,
ResolveLevelPathByMapId, TravelToMapById, SetPendingSpawnPose/Consume
- AZMMOPlayerCharacter::BeginPlay: consome PendingSpawnPose do Flow e
SetActorLocationAndRotation no pawn local (substitui PlayerStart default)
- DefaultGame.ini: MapsTableAsset=/Game/ZMMO/Data/World/DT_Maps.DT_Maps
- .gitignore: + .vscode/
Outras mudancas no working tree (paralelas a esta frente):
- Content/AutoCreated/MMOWidget/Widgets/WBP_* (boot/login/charselect/etc.)
- Content/AutoCreated/MMOWidget/Fonts/Font_* + font_*_Face
- Refatoracao de fontes ZMMO/UI/Fonts (FF_* deletadas, F_* + Face)
- Content/__ExternalActors__/ZMMO/Debug/Maps/L_Test_UI/* (75 actors)
- Content/Editor/ZeusUMGForge/FontMap.uasset
- Content/ZMMO/UI/Shared/UI_CheckBox_Master.uasset
- Content/ExternalContent/{Fab,Marketplace,Megascans}/.gitkeep
- Content/ThirdPerson/Menu.umap
37 lines
2.0 KiB
INI
37 lines
2.0 KiB
INI
[/Script/EngineSettings.GeneralProjectSettings]
|
|
ProjectID=FC3E256F43B2AFD43009F4949B0814BE
|
|
ProjectName=Third Person Game Template
|
|
|
|
; -----------------------------------------------------------------------------
|
|
; ZMMO Theme subsystem (see Source/ZMMO/Game/UI/ZMMOThemeSubsystem.h and
|
|
; ARQUITETURA.md §1.10 / §4.7).
|
|
;
|
|
; - DefaultThemeAsset is the fallback theme (must define every EZMMOThemeKey).
|
|
; - ThemeRegistry maps ThemeId -> seasonal DA_Theme_* asset.
|
|
; - CalendarTable points to DT_ThemeCalendar (FThemeCalendarRow rows).
|
|
; - UIStyleTable points to DT_UI_Styles (FUIStyleRow rows): tokens de estilo
|
|
; (cores/fontes/dimensões) keyed por ThemeId; linha "Default" é o fallback.
|
|
; - DevThemeOverride forces a theme in non-Shipping builds only. Keep commented
|
|
; in production.
|
|
;
|
|
; Paths use the /Game prefix (cooked Content namespace). Uncomment after the
|
|
; assets are actually created in the editor.
|
|
; -----------------------------------------------------------------------------
|
|
[/Script/ZMMO.ZMMOThemeSubsystem]
|
|
;DefaultThemeAsset=/Game/ZMMO/UI/Themes/DA_Theme_Default.DA_Theme_Default
|
|
;+ThemeRegistry=(("Christmas", "/Game/ZMMO/UI/Themes/DA_Theme_Christmas.DA_Theme_Christmas"))
|
|
;+ThemeRegistry=(("Halloween", "/Game/ZMMO/UI/Themes/DA_Theme_Halloween.DA_Theme_Halloween"))
|
|
;CalendarTable=/Game/ZMMO/UI/Themes/DT_ThemeCalendar.DT_ThemeCalendar
|
|
UIStyleTable=/Game/ZMMO/Data/UI/DT_UI_Styles.DT_UI_Styles
|
|
;DevThemeOverride=Christmas
|
|
|
|
[/Script/ZMMO.UIFrontEndFlowSubsystem]
|
|
; Mapa estado->tela. O DA já existe (RootLayoutClass = WBP_PrimaryGameLayout);
|
|
; StateScreens fica vazio até os WBPs de página virem do Zeus UMG Forge (§4.8).
|
|
ScreenSetAsset=/Game/ZMMO/UI/FrontEnd/DA_FrontEndScreenSet.DA_FrontEndScreenSet
|
|
|
|
; Fase 4 — char spawn DB-driven. DT_Maps espelha o `maps_config.json` do
|
|
; server (Server/ZeusServerEngine/Config/DataTables/maps_config.json) — o
|
|
; cliente resolve `mapId -> ClientLevel/spawns` via FZMMOMapDef rows.
|
|
MapsTableAsset=/Game/ZMMO/Data/World/DT_Maps.DT_Maps
|