Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
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
Alchemy Viewer
Alchemy Viewer
Commits
e3f075f7
Commit
e3f075f7
authored
14 years ago
by
Twisted Laws
Browse files
Options
Downloads
Patches
Plain Diff
STORM-954 SL-viewer 2.0 No nearby people when over approxiamately 1000 meters
parent
35558496
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/contributions.txt
+2
-0
2 additions, 0 deletions
doc/contributions.txt
indra/newview/llworld.cpp
+36
-0
36 additions, 0 deletions
indra/newview/llworld.cpp
with
38 additions
and
0 deletions
doc/contributions.txt
+
2
−
0
View file @
e3f075f7
...
@@ -395,6 +395,7 @@ Jonathan Yap
...
@@ -395,6 +395,7 @@ Jonathan Yap
VWR-17801
VWR-17801
VWR-24347
VWR-24347
STORM-975
STORM-975
STORM-954
Kage Pixel
Kage Pixel
VWR-11
VWR-11
Ken March
Ken March
...
@@ -781,6 +782,7 @@ Twisted Laws
...
@@ -781,6 +782,7 @@ Twisted Laws
STORM-467
STORM-467
STORM-844
STORM-844
STORM-643
STORM-643
STORM-954
Vadim Bigbear
Vadim Bigbear
VWR-2681
VWR-2681
Vector Hastings
Vector Hastings
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llworld.cpp
+
36
−
0
View file @
e3f075f7
...
@@ -1474,6 +1474,42 @@ void LLWorld::getAvatars(uuid_vec_t* avatar_ids, std::vector<LLVector3d>* positi
...
@@ -1474,6 +1474,42 @@ void LLWorld::getAvatars(uuid_vec_t* avatar_ids, std::vector<LLVector3d>* positi
}
}
}
}
}
}
// retrieve the list of close avatars from viewer objects as well
// for when we are above 1000m, only do this when we are retrieving
// uuid's too as there could be duplicates
if
(
avatar_ids
!=
NULL
)
{
for
(
std
::
vector
<
LLCharacter
*>::
iterator
iter
=
LLCharacter
::
sInstances
.
begin
();
iter
!=
LLCharacter
::
sInstances
.
end
();
++
iter
)
{
LLVOAvatar
*
pVOAvatar
=
(
LLVOAvatar
*
)
*
iter
;
if
(
pVOAvatar
->
isDead
()
||
pVOAvatar
->
isSelf
())
continue
;
LLUUID
uuid
=
pVOAvatar
->
getID
();
if
(
uuid
.
isNull
())
continue
;
LLVector3d
pos_global
=
pVOAvatar
->
getPositionGlobal
();
if
(
dist_vec
(
pos_global
,
relative_to
)
<=
radius
)
{
bool
found
=
false
;
uuid_vec_t
::
iterator
sel_iter
=
avatar_ids
->
begin
();
for
(;
sel_iter
!=
avatar_ids
->
end
();
sel_iter
++
)
{
if
(
*
sel_iter
==
uuid
)
{
found
=
true
;
break
;
}
}
if
(
!
found
)
{
if
(
positions
!=
NULL
)
positions
->
push_back
(
pos_global
);
avatar_ids
->
push_back
(
uuid
);
}
}
}
}
}
}
...
...
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