Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
XDG Integration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
JennaHuntsman
XDG Integration
Commits
b84db835
Commit
b84db835
authored
13 years ago
by
Todd Stinson
Browse files
Options
Downloads
Patches
Plain Diff
PATH-304: Adding more debug messaging and correcting the camel-case of the NavMesh update message.
parent
c990cc71
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
etc/message.xml
+1
-1
1 addition, 1 deletion
etc/message.xml
indra/newview/llpathfindingmanager.cpp
+6
-0
6 additions, 0 deletions
indra/newview/llpathfindingmanager.cpp
with
7 additions
and
1 deletion
etc/message.xml
+
1
−
1
View file @
b84db835
...
@@ -547,7 +547,7 @@
...
@@ -547,7 +547,7 @@
<boolean>
true
</boolean>
<boolean>
true
</boolean>
</map>
</map>
<key>
Nav
m
eshStatusUpdate
</key>
<key>
Nav
M
eshStatusUpdate
</key>
<map>
<map>
<key>
flavor
</key>
<key>
flavor
</key>
<string>
llsd
</string>
<string>
llsd
</string>
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llpathfindingmanager.cpp
+
6
−
0
View file @
b84db835
...
@@ -627,6 +627,9 @@ LLViewerRegion *LLPathfindingManager::getCurrentRegion() const
...
@@ -627,6 +627,9 @@ LLViewerRegion *LLPathfindingManager::getCurrentRegion() const
void
LLNavMeshSimStateChangeNode
::
post
(
ResponsePtr
pResponse
,
const
LLSD
&
pContext
,
const
LLSD
&
pInput
)
const
void
LLNavMeshSimStateChangeNode
::
post
(
ResponsePtr
pResponse
,
const
LLSD
&
pContext
,
const
LLSD
&
pInput
)
const
{
{
#ifdef XXX_STINSON_DEBUG_NAVMESH_ZONE
llinfos
<<
"Received NavMeshStatusUpdate: "
<<
pContext
<<
llendl
;
#endif // XXX_STINSON_DEBUG_NAVMESH_ZONE
LLPathfindingNavMeshStatus
navMeshStatus
(
pContext
);
LLPathfindingNavMeshStatus
navMeshStatus
(
pContext
);
LLPathfindingManager
::
getInstance
()
->
handleNavMeshStatusUpdate
(
pContext
);
LLPathfindingManager
::
getInstance
()
->
handleNavMeshStatusUpdate
(
pContext
);
}
}
...
@@ -652,6 +655,9 @@ NavMeshStatusResponder::~NavMeshStatusResponder()
...
@@ -652,6 +655,9 @@ NavMeshStatusResponder::~NavMeshStatusResponder()
void
NavMeshStatusResponder
::
result
(
const
LLSD
&
pContent
)
void
NavMeshStatusResponder
::
result
(
const
LLSD
&
pContent
)
{
{
#ifdef XXX_STINSON_DEBUG_NAVMESH_ZONE
llinfos
<<
"Received requested NavMeshStatus: "
<<
pContent
<<
llendl
;
#endif // XXX_STINSON_DEBUG_NAVMESH_ZONE
LLPathfindingNavMeshStatus
navMeshStatus
(
mRegionUUID
,
pContent
);
LLPathfindingNavMeshStatus
navMeshStatus
(
mRegionUUID
,
pContent
);
LLPathfindingManager
::
getInstance
()
->
handleNavMeshStatusRequest
(
navMeshStatus
,
mRegion
);
LLPathfindingManager
::
getInstance
()
->
handleNavMeshStatusRequest
(
navMeshStatus
,
mRegion
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment