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
eb8c0bf0
Commit
eb8c0bf0
authored
10 years ago
by
Merov Linden
Browse files
Options
Downloads
Patches
Plain Diff
DD-59 : Takes care of the case of a stock folder at the level of a listing folder
parent
ae94a0d0
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/newview/llinventoryfunctions.cpp
+15
-4
15 additions, 4 deletions
indra/newview/llinventoryfunctions.cpp
with
15 additions
and
4 deletions
indra/newview/llinventoryfunctions.cpp
+
15
−
4
View file @
eb8c0bf0
...
@@ -1038,14 +1038,25 @@ bool has_correct_permissions_for_sale(LLInventoryCategory* cat)
...
@@ -1038,14 +1038,25 @@ bool has_correct_permissions_for_sale(LLInventoryCategory* cat)
// *TODO : Add the rest of the SLM/AIS business logic (limit of nesting depth, stock folder consistency, overall limit on listings, etc...)
// *TODO : Add the rest of the SLM/AIS business logic (limit of nesting depth, stock folder consistency, overall limit on listings, etc...)
void
validate_marketplacelistings
(
LLInventoryCategory
*
cat
)
void
validate_marketplacelistings
(
LLInventoryCategory
*
cat
)
{
{
// Special case a stock folder depth issue
LLViewerInventoryCategory
*
viewer_cat
=
(
LLViewerInventoryCategory
*
)
(
cat
);
const
LLFolderType
::
EType
folder_type
=
cat
->
getPreferredType
();
S32
depth
=
depth_nesting_in_marketplace
(
cat
->
getUUID
());
if
((
folder_type
==
LLFolderType
::
FT_MARKETPLACE_STOCK
)
&&
(
depth
==
1
))
{
// Nest the stock folder one level deeper in a normal folder and restart from there
LLUUID
parent_uuid
=
gInventory
.
findCategoryUUIDForType
(
LLFolderType
::
FT_MARKETPLACE_LISTINGS
,
false
);
LLUUID
folder_uuid
=
gInventory
.
createNewCategory
(
parent_uuid
,
LLFolderType
::
FT_NONE
,
cat
->
getName
());
LLInventoryCategory
*
new_cat
=
gInventory
.
getCategory
(
folder_uuid
);
gInventory
.
changeCategoryParent
(
viewer_cat
,
folder_uuid
,
false
);
validate_marketplacelistings
(
new_cat
);
return
;
}
LLInventoryModel
::
cat_array_t
*
cat_array
;
LLInventoryModel
::
cat_array_t
*
cat_array
;
LLInventoryModel
::
item_array_t
*
item_array
;
LLInventoryModel
::
item_array_t
*
item_array
;
gInventory
.
getDirectDescendentsOf
(
cat
->
getUUID
(),
cat_array
,
item_array
);
gInventory
.
getDirectDescendentsOf
(
cat
->
getUUID
(),
cat_array
,
item_array
);
LLViewerInventoryCategory
*
viewer_cat
=
(
LLViewerInventoryCategory
*
)
(
cat
);
const
LLFolderType
::
EType
folder_type
=
cat
->
getPreferredType
();
S32
depth
=
depth_nesting_in_marketplace
(
cat
->
getUUID
());
// Stock items : sorting and moving the various stock items is complicated as the set of constraints is high
// Stock items : sorting and moving the various stock items is complicated as the set of constraints is high
// For each folder, we need to:
// For each folder, we need to:
// * separate non stock items, stock items per types in different folders
// * separate non stock items, stock items per types in different folders
...
...
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