Home
last modified time | relevance | path

Searched refs:mapUri (Results 1 – 25 of 50) sorted by relevance

12

/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/common/src/acs/
H A Dsystem.cpp53 : mapUri (mapUri) in DENG2_PIMPL_NOREF()
67 to << mapUri.compose() in DENG2_PIMPL_NOREF()
76 mapUri = de::makeUri(mapUriStr); in DENG2_PIMPL_NOREF()
77 if(mapUri.scheme().isEmpty()) mapUri.setScheme("Maps"); in DENG2_PIMPL_NOREF()
133 void System::loadModuleForMap(de::Uri const &mapUri) in loadModuleForMap() argument
141 if(mapUri.isEmpty()) return; in loadModuleForMap()
166 DENG2_UNUSED(mapUri); in loadModuleForMap()
219 DENG2_ASSERT(gfw_Session()->mapUri() != mapUri); in deferScriptStart()
231 task->mapUri == mapUri) in deferScriptStart()
296 void System::runDeferredTasks(de::Uri const &mapUri) in runDeferredTasks() argument
[all …]
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/libdoomsday/src/resource/
H A Dmapmanifests.cpp45 res::MapManifest &MapManifests::findMapManifest(de::Uri const &mapUri) const in findMapManifest()
48 if (!mapUri.scheme().compareWithoutCase("Maps")) in findMapManifest()
51 mapUri.path(), PathTree::MatchFull | PathTree::NoBranch)) in findMapManifest()
55 …or("MapManifests::findMapManifest", "Failed to locate a manifest for \"" + mapUri.asText() + "\""); in findMapManifest()
58 res::MapManifest *MapManifests::tryFindMapManifest(de::Uri const &mapUri) const in tryFindMapManifest()
61 if (mapUri.scheme().compareWithoutCase("Maps")) return nullptr; in tryFindMapManifest()
62 return d->manifests.tryFind(mapUri.path(), PathTree::MatchFull | PathTree::NoBranch); in tryFindMapManifest()
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/common/include/
H A Dg_common.h51 de::Uri const &mapUri, uint mapEntrance = 0);
99 de::Record &G_MapInfoForMapUri(de::Uri const &mapUri);
104 de::String G_MapAuthor(de::Uri const &mapUri, bool supressGameAuthor = false);
109 de::String G_MapTitle(de::Uri const &mapUri);
114 de::Uri G_MapTitleImage(de::Uri const &mapUri);
125 de::String G_MapDescription(de::String episodeId, de::Uri const &mapUri);
137 uint G_MapNumberFor(de::Uri const &mapUri);
H A Dp_sound.h36 bool S_MapMusic(de::Uri const &mapUri);
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/importidtech1/src/
H A Dmapinfotranslator.cpp65 … return mapUri.scheme().compareWithoutCase("Maps") ? mapUri.compose() : mapUri.path().toString(); in toMapId()
208 MapInfo *getMapInfo(de::Uri const &mapUri) in getMapInfo()
234 String path = mapUri.path(); in mapWarpNumberFor()
487 if(mapUri.scheme().isEmpty()) mapUri.setScheme("Maps"); in parseEpisode()
629 de::Uri mapUri; in parseMapNext() local
635 if(mapUri.scheme().isEmpty()) mapUri.setScheme("Maps"); in parseMapNext()
658 de::Uri mapUri; in parseMap() local
667 mapUri = de::makeUri(mapRef); in parseMap()
668 if(mapUri.scheme().isEmpty()) mapUri.setScheme("Maps"); in parseMap()
680 info = db.getMapInfo(mapUri); in parseMap()
[all …]
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/libdoomsday/src/defs/
H A Depisode.cpp80 de::Uri const mapUri(mapId, RC_NULL); in tryFindHubByMapId() local
81 if (!mapUri.path().isEmpty()) in tryFindHubByMapId()
89 if (mapUri == de::makeUri(mgNodeDef.gets(VAR_ID))) in tryFindHubByMapId()
101 de::Uri const mapUri(mapId, RC_NULL); in tryFindMapGraphNode() local
102 if (!mapUri.path().isEmpty()) in tryFindMapGraphNode()
111 if (mapUri == de::makeUri(mgNodeDef.gets(VAR_ID))) in tryFindMapGraphNode()
121 if (mapUri == de::makeUri(mgNodeDef.gets(VAR_ID))) in tryFindMapGraphNode()
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/common/src/game/
H A Dgamesession.cpp469 de::Uri const mapUri(mapUriAsText, RC_NULL);
614 de::Uri const mapUri = self().mapUri();
618 visitedMaps << mapUri;
631 String mapAuthor = G_MapAuthor(mapUri);
635 String mapTitle = G_MapTitle(mapUri);
680 S_MapMusic(self().mapUri());
684 P_SetupMap(self().mapUri());
948 return G_MapInfoForMapUri(mapUri());
1076 de::Uri const &mapUri, uint mapEntryPoint)
1109 d->setMapAndEntryPoint(mapUri, mapEntryPoint);
[all …]
H A Dg_game.cpp1854 de::Uri const mapUri = gfw_Session()->mapUri(); in G_PlayerReborn() local
1856 (mapUri.path() == "E1M9" || in G_PlayerReborn()
1857 mapUri.path() == "E2M9" || in G_PlayerReborn()
1860 mapUri.path() == "E5M9")) in G_PlayerReborn()
1997 de::Uri const mapUri = gfw_Session()->mapUri(); in G_DefaultGameStateFolderUserDescription() local
2011 mapTitle = mapUri.path(); in G_DefaultGameStateFolderUserDescription()
2047 String path = mapUri.path(); in G_MapNumberFor()
2758 de::Uri mapUri; in D_CMD() local
2777 if (mapUri.scheme().isEmpty()) mapUri.setScheme("Maps"); in D_CMD()
2784 if (mapUri.isEmpty()) in D_CMD()
[all …]
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/libdoomsday/src/
H A Dabstractsession.cpp37 de::Uri mapUri; in DENG2_PIMPL_NOREF() local
64 de::Uri AbstractSession::mapUri() const in mapUri() function in AbstractSession
66 return hasBegun()? d->mapUri : de::makeUri("Maps:"); in mapUri()
88 d->mapUri = uri; in setMapUri()
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/client/src/world/base/
H A Dclientserverworld.cpp432 Uri const mapUri = mapManifest.composeUri(); in DENG2_PIMPL()
438 map->_uri = mapUri; in DENG2_PIMPL()
553 gx.FinalizeMapChange(reinterpret_cast<uri_s const *>(&mapUri)); in DENG2_PIMPL()
676 if (!mapUri.isEmpty()) in DENG2_PIMPL()
678 String cmd = String("init-") + mapUri.path(); in DENG2_PIMPL()
813 bool ClientServerWorld::changeMap(de::Uri const &mapUri) in changeMap() argument
817 if (!mapUri.path().isEmpty()) in changeMap()
819 mapDef = App_Resources().mapManifests().tryFindMapManifest(mapUri); in changeMap()
823 if (!mapUri.path().isEmpty() && !DoomsdayApp::app().busyMode().isActive()) in changeMap()
879 Record const &ClientServerWorld::mapInfoForMapUri(de::Uri const &mapUri) const in mapInfoForMapUri()
[all …]
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/common/include/acs/
H A Dsystem.h70 void loadModuleForMap(de::Uri const &mapUri);
108 bool deferScriptStart(de::Uri const &mapUri, int scriptNumber, Script::Args const &args);
124 void runDeferredTasks(de::Uri const &mapUri);
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/common/src/network/
H A Dd_netsv.cpp217 static void NetSv_CycleToMapNum(de::Uri const &mapUri) in NetSv_CycleToMapNum() argument
364 return mapUri; in NetSv_ScanCycle()
515 if(mapUri.path().isEmpty()) in NetSv_MapCycleTicker()
518 mapUri = NetSv_ScanCycle(cycleIndex = 0); in NetSv_MapCycleTicker()
519 if(mapUri.path().isEmpty()) in NetSv_MapCycleTicker()
529 NetSv_CycleToMapNum(mapUri); in NetSv_MapCycleTicker()
666 de::Uri mapUri = gfw_Session()->mapUri(); in NetSv_SendGameState() local
672 << mapUri.resolved() in NetSv_SendGameState()
1537 de::Uri mapUri = NetSv_ScanCycle(cycleIndex = 0); in D_CMD() local
1538 if(mapUri.path().isEmpty()) in D_CMD()
[all …]
H A Dd_net.cpp215 de::Uri mapUri = *reinterpret_cast<de::Uri const *>(Con_GetUri("server-game-map")); in D_NetServerStarted() local
216 if(mapUri.scheme().isEmpty()) mapUri.setScheme("Maps"); in D_NetServerStarted()
226 gfw_Session()->begin(rules, episodeId, mapUri); in D_NetServerStarted()
232 mapUri = D_NetDefaultMap(); in D_NetServerStarted()
234 << mapUri; in D_NetServerStarted()
236 gfw_Session()->begin(rules, episodeId, mapUri); in D_NetServerStarted()
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/libdoomsday/include/doomsday/resource/
H A Dmapmanifests.h42 res::MapManifest &findMapManifest(de::Uri const &mapUri) const;
51 res::MapManifest *tryFindMapManifest(de::Uri const &mapUri) const;
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/common/src/world/
H A Dp_sound.cpp36 bool S_MapMusic(de::Uri const &mapUri) in S_MapMusic() argument
38 String musicId = G_MapInfoForMapUri(mapUri).gets("music"); in S_MapMusic()
41 musicId = mapUri.path(); in S_MapMusic()
H A Dp_mapsetup.cpp682 void P_SetupMap(de::Uri const &mapUri) in P_SetupMap() argument
719 if (!P_MapChange(mapUri.compose().toUtf8().constData())) in P_SetupMap()
721 …Con_Error("P_SetupMap: Failed changing/loading map \"%s\".\n", mapUri.compose().toUtf8().constData… in P_SetupMap()
903 de::Uri const &mapUri = *reinterpret_cast<de::Uri const *>(mapUri_); in P_FinalizeMapChange() local
905 DENG2_UNUSED(mapUri); in P_FinalizeMapChange()
922 if (const String onSetupSrc = G_MapInfoForMapUri(mapUri).gets("onSetup")) in P_FinalizeMapChange()
944 gfw_Session()->acsSystem().loadModuleForMap(mapUri); in P_FinalizeMapChange()
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/doom/src/
H A Dintermission.cpp61 de::Uri const &mapUri = de::makeUri("Maps:"), in Animation()
66 , mapUri (mapUri) in Animation()
78 de::Uri mapUri; member
80 Location(Vector2i const &origin, de::Uri const &mapUri) in Location()
82 , mapUri(mapUri) in Location()
300 static Location const *tryFindLocationForMap(Locations const *locations, de::Uri const &mapUri) in tryFindLocationForMap() argument
306 if(loc.mapUri == mapUri) return &loc; in tryFindLocationForMap()
553 if(!def.mapUri.path().isEmpty() && wbs->nextMap != def.mapUri) in beginAnimations()
565 if(!def.mapUri.path().isEmpty()) in beginAnimations()
587 if(!def.mapUri.path().isEmpty() && wbs->nextMap != def.mapUri) in animateBackground()
[all …]
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/hexen/src/
H A Dp_spec.cpp449 de::Uri const mapUri = (mapIdx == 0? gfw_Session()->mapUri() in P_ExecuteLineSpecial() local
451 if(gfw_Session()->mapUri() == mapUri) in P_ExecuteLineSpecial()
460 success = acscriptSys().deferScriptStart(mapUri, scriptNumber, scriptArgs); in P_ExecuteLineSpecial()
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/common/src/
H A Dp_saveg.cpp875 …Uri *mapUri = Uri_NewWithPath2((*metadata)["mapUri"].value().asText().toUtf8().constData… in SV_LoadGameClient()
883 if(gfw_Session()->mapUri() != *reinterpret_cast<de::Uri *>(mapUri)) in SV_LoadGameClient()
885 gfw_Session()->begin(*mapUri, 0/*default*/, *rules); in SV_LoadGameClient()
893 Uri_Delete(mapUri); mapUri = 0; in SV_LoadGameClient()
921 MapStateReader(*session).read(Str_Text(Uri_Resolved(mapUri))); in SV_LoadGameClient()
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/heretic/src/
H A Dintermission.cpp51 de::Uri mapUri; member
53 Location(Vector2i const &origin, de::Uri const &mapUri) in Location()
55 , mapUri(mapUri) in Location()
168 static Location const *tryFindLocationForMap(Locations const *locations, de::Uri const &mapUri) in tryFindLocationForMap() argument
174 if(loc.mapUri == mapUri) return &loc; in tryFindLocationForMap()
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/node_modules/h2o2/
H A DREADME.md52 …host, port, protocol, path, and query. Cannot be used with `host`, `port`, `protocol`, or `mapUri`.
60 * `mapUri` - a function used to map the request URI to the proxied URI. Cannot be used together wit…
105 …c upstream service with the same path as the original request. Cannot be used with `uri`, `mapUri`.
123 …ing host, port, protocol, path and query. Cannot be used with `host`, `port`, `protocol`, `mapUri`.
174 ### Using the `mapUri` and `onResponse` options
184 mapUri: function (request) {
/dports/net/rospo/rospo-0.7.1/vendor/github.com/gin-gonic/gin/gin-1.7.4/binding/
H A Duri.go14 if err := mapUri(obj, m); err != nil {
/dports/net/rospo/rospo-0.7.1/vendor/github.com/gin-gonic/gin/binding/
H A Duri.go14 if err := mapUri(obj, m); err != nil {
/dports/www/mirrorselect/mirrorselect-0.9.0/vendor/github.com/gin-gonic/gin/binding/
H A Duri.go14 if err := mapUri(obj, m); err != nil {
/dports/textproc/kibana6/kibana-6.8.16-darwin-x86_64/node_modules/h2o2/
H A DREADME.md52 …host, port, protocol, path, and query. Cannot be used with `host`, `port`, `protocol`, or `mapUri`.
61 * `mapUri` - a function used to map the request URI to the proxied URI. Cannot be used together wit…
106 …c upstream service with the same path as the original request. Cannot be used with `uri`, `mapUri`.
124 …ing host, port, protocol, path and query. Cannot be used with `host`, `port`, `protocol`, `mapUri`.
175 ### Using the `mapUri` and `onResponse` options
185 mapUri: function (request) {

12