Skip to content

Commit

Permalink
ADR 239 - Avatar assembly definition (#242)
Browse files Browse the repository at this point in the history
* ADR 239 - Avatar assembly definition

* Update content/ADR-239-avatar-assembly-changes.md

Co-authored-by: menduz <[email protected]>
Signed-off-by: davidejensen <[email protected]>

* Update content/ADR-239-avatar-assembly-changes.md

Co-authored-by: menduz <[email protected]>
Signed-off-by: davidejensen <[email protected]>

* Update content/ADR-239-avatar-assembly-changes.md

Co-authored-by: menduz <[email protected]>
Signed-off-by: davidejensen <[email protected]>

* Update content/ADR-239-avatar-assembly-changes.md

Co-authored-by: menduz <[email protected]>
Signed-off-by: davidejensen <[email protected]>

* Update content/ADR-239-avatar-assembly-changes.md

Co-authored-by: menduz <[email protected]>
Signed-off-by: davidejensen <[email protected]>

* Update content/ADR-239-avatar-assembly-changes.md

Co-authored-by: menduz <[email protected]>
Signed-off-by: davidejensen <[email protected]>

* Updated avatar assmebly adr

* Minor change

* Minor fix

* Set status to living

---------

Signed-off-by: davidejensen <[email protected]>
Co-authored-by: menduz <[email protected]>
  • Loading branch information
davidejensen and menduz authored Jun 8, 2023
1 parent 10dba6c commit 03220da
Show file tree
Hide file tree
Showing 2 changed files with 200 additions and 20 deletions.
196 changes: 196 additions & 0 deletions content/ADR-239-avatar-assembly-changes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,196 @@
---
adr: 239
date: 2023-06-01
title: Avatar Assembly Changes
status: Living
authors:
- davidejensen
type: Standards Track
spdx-license: CC0-1.0
---

## Abstract

This ADR discusses improvements to the avatar system in Decentraland to enhance user freedom and create a more reliable, flexible, and scalable system. The ADR establishes a prioritization order for wearable visualization, modifies the replacement system to prevent wearables from replacing each other, introduces body fallback to show base body parts when no wearables are equipped, and allows users to force the rendering of hidden wearables. These decisions will serve as the standard for the Decentraland Avatar Assembly System and can be implemented in external platforms. The suggested flow for avatar assembly is also outlined.


## Context, Reach & Prioritization

Previously, the avatar system has been unreliable and limited over different aspects.
To increase users freedom, create a reliable, flexible and scalable system the following changes will be applied:
- **Wearable Visualization Priority:** A prioritization order will be defined for wearable visualization to resolve issues of mutual exclusion.
- **Hiding and Replacing:** The replacement system will be modified so that a wearable cannot replace another.
- **Body Fallback:** From now on, some categories will show parts of the base body when no wearable is equipped or hiding it.
- **Force Render:** Users will be given more ability to show a wearable that is hidden by another.

The different decisions will become the standard base for Decentraland Avatar Assembly System, initially applied in the unity reference client, but then proposed to any external platform that uses the Decentraland avatars.

## Solution Space Exploration

### Wearable Visualization Priority

Previously the hiding and replacing functionality was following a rule of "Last equipped", meaning that replaces and hides were applied based on the last wearable equipped, creating discrepancy and an inconsistent behaviour. Additionally it was not solving situations of mutual hiding (wearable A hiding B and B hiding A)
To standardize this an ordered list of categories will be followed to calculate which wearables are hiding which.
The proposed priority list is (from most important to least):
- Skins
- Top Body
- Bottom Body
- Shoes
- Helmets
- Masks
- Hats
- Top Head
- Hair
- Tiaras
- Eyewear
- Earrings

All elements associated with the face, such as the mouth, eyes, and eyebrows, directly depend on the visualization of the head. The head is not a wearable itself, so it cannot create circular references, and it is hidden as soon as one or more wearables determine it.

The following example illustrates the expected behavior: If a wearable of type "Mask" hides another wearable of type "Hat", and this in turn hides wearables of type "Mask", the wearable of type "Mask" will have visualization priority, hiding the Mask.


### Hiding and replacing

The current result of equipping an item that replaces or hides other wearables is unexpected and inconsistent. When a player navigates through their inventory items, as they equip, unequip, or hide other wearables from other categories without notice, they cannot reverse this behavior when equipping a different wearable.
When a wearable unequips another wearable, the latter could be running a portable experience. By deactivating it, any progress or data in memory could be lost, ruining its expected behavior.
The decision-making capacity of creators is overlapping with the freedom of choice of players. When a player purchases a wearable, thinking it will combine well with what they already have in their inventory, they may be unpleasantly surprised that these are not compatible. Information about which other wearables are replaced or hidden is not clearly indicated in the marketplace or backpack.
There is no real weighty reason for a wearable to unequip another wearable, instead of hiding it to prevent clipping problems.

On the base of that the replacing functionality for new wearables will be removed, pre-existing wearables will see the replacing list being merged with the hiding list.

### Body fallback

Previously, by unequipping the upper_body, the lower_body, the feet or the eyebrows, caused the system to fallback to default wearables (t-shirt, pants and shoes).
This prevents, for example, players from going barefoot or without t-shirt.

The system will extent the concept of Body by removing the default fallback wearables.
These pieces, which can be called "Bare feet", "Naked Top" and "Naked Bottom", are not considered wearables, but rather parts of the base body geometry that are exclusively displayed when no wearables are equipped and there are no other wearables hiding the relevant category.


### Force Render

To extend further players ability to use the wearables they have. If an equipped wearable is hidden by the effect of another wearable, players can unhide them and override this instruction.
This forced render effect is removed as soon as another wearable that re-hides that category is equipped, forcing the user to show it again.

In order to store the force render categories, it is proposed to add a new field to the player profile holding a list of overridden hide categories.
This list of string will hold the current overridden categories so that each player can render other players (and itself) according to the new rules.
As an example:
```yaml
"forceRender": ["mask","top_head","feet"]
```
This example means that when the avatar is going to be assembled the "mask", "top_head" and "feet" categories will be shown even if other wearables are hiding them.
Here's the avatar definition with the additional forceRender field that will be provided:
```json
{
"timestamp":1684839566179,
"avatars":[
{
"hasClaimedName":true,
"description":"",
"tutorialStep":256,
"name":"Username",
"avatar":{
"bodyShape":"urn:decentraland:off-chain:base-avatars:BaseMale",
"wearables":[
"urn:decentraland:off-chain:base-avatars:eyebrows_00",
"urn:decentraland:off-chain:base-avatars:mouth_00",
"urn:decentraland:off-chain:base-avatars:casual_hair_01",
"urn:decentraland:off-chain:base-avatars:beard",
"urn:decentraland:matic:collections-v2:0xc11b9d892e12cfaca551551345266d60e9abff6e:1",
"urn:decentraland:matic:collections-v2:0x84a1d84f183fa0fd9b6b9cb1ed0ff1b7f5409ebb:5",
"urn:decentraland:ethereum:collections-v1:halloween_2020:hwn_2020_ghostblaster_tiara",
"urn:decentraland:ethereum:collections-v1:halloween_2020:hwn_2020_cat_eyes",
"urn:decentraland:off-chain:base-avatars:piratepatch",
"urn:decentraland:matic:collections-v2:0xca7c347ffdeee480092f3b1268550b60ea031077:4",
"urn:decentraland:matic:collections-v2:0x2a3a6d0c92b18102ed189233976c974473a59c87:0"
],
"forceRender":["mask","top_head","feet"],
"emotes":[
{
"slot":0,
"urn":"raiseHand"
},
{
"slot":1,
"urn":"urn:decentraland:matic:collections-v2:0x167d6b63511a7b5062d1f7b07722fccbbffb5105:0"
},
{
"slot":2,
"urn":"urn:decentraland:matic:collections-v2:0x875146d1d26e91c80f25f5966a84b098d3db1fc8:1"
},
{
"slot":3,
"urn":"urn:decentraland:matic:collections-v2:0x875146d1d26e91c80f25f5966a84b098d3db1fc8:2"
},
{
"slot":4,
"urn":"urn:decentraland:matic:collections-v2:0x875146d1d26e91c80f25f5966a84b098d3db1fc8:0"
},
{
"slot":5,
"urn":"headexplode"
},
{
"slot":6,
"urn":"tektonik"
},
{
"slot":7,
"urn":"clap"
},
{
"slot":8,
"urn":"handsair"
},
{
"slot":9,
"urn":"dance"
}
],
"snapshots":{
"body":"https://interconnected.online/content/contents/bafkreihhwboio77zsl6evt6i3f5iun5ek65w7dyuvl44xwk33zts4qx2v4",
"face256":"https://interconnected.online/content/contents/bafkreiddnf2ixknlhio4hk7ao47agiwkqs43cg3nkoyibckgmhz5iqn3he"
},
"eyes":{
"color":{
"r":0.529411792755127,
"g":0.501960813999176,
"b":0.47058823704719543,
"a":1
}
},
"hair":{
"color":{
"r":0.10980392247438431,
"g":0.10980392247438431,
"b":0.10980392247438431,
"a":1
}
},
"skin":{
"color":{
"r":0.800000011920929,
"g":0.6078431606292725,
"b":0.46666666865348816,
"a":1
}
}
},
"ethAddress":"0x1hd7fl09yivcn7z6asc0a8af9c3b1ba28hdy65sd",
"userId":"0x1hd7fl09yivcn7z6asc0a8af9c3b1ba28hdy65sd",
"version":12,
"hasConnectedWeb3":true
}
]
}
```

### Avatar assembly suggested flow

With the points previously discovered, the suggested procedure to visualize an avatar is the following:
* Request a user profile ( `POST https://content-server/content/active {"pointers": ["0xaddress"]}` )
* Request the wearables listed in the profile wearables field, all wearables listed are the equipped ones, no matter their visibility. ( `POST https://content-server/content/active {"pointers": ["urn1", "urn2"]}` )
* Process the hide list provided in each wearable following the visualization priority ( the field is the array `data.hides` in each wearable definition )
* Apply any force render category listed in the forceRender array in the profile definition ( obtained in the profile response called `forceRender` )
24 changes: 4 additions & 20 deletions content/ADR-57-avatar-assembling-for-visualization.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ An Avatar in Decentraland is a set of _wearables_ on top of a bodyshape. Its com
{
"bodyShapes": ["urn:decentraland:off-chain:base-avatars:BaseMale"],
"mainFile": "F_Eyewear_BlackSunglasses.glb",
"overrideReplaces": [],
"overrideHides": [],
"contents": [
{
Expand All @@ -40,7 +39,6 @@ An Avatar in Decentraland is a set of _wearables_ on top of a bodyshape. Its com
{
"bodyShapes": ["urn:decentraland:off-chain:base-avatars:BaseFemale"],
"mainFile": "F_Eyewear_BlackSunglasses.glb",
"overrideReplaces": [],
"overrideHides": [],
"contents": [
{
Expand All @@ -60,9 +58,10 @@ An Avatar in Decentraland is a set of _wearables_ on top of a bodyshape. Its com
}
```

# Hides and Replaces
# Hides and Force Render

To avoid issues such as clipping when rendering, each _wearable_ contains sets of categories to _hide_ and _replace._
To avoid issues such as clipping when rendering, each _wearable_ contains sets of categories to _hide_.
In addition, the avatar definition contains a field called _forceRender_ to allow specific hidden categories to be displayed anyway. More info at [ADR-239](/adr/ADR-239)

## Hides

Expand All @@ -72,12 +71,6 @@ Conflicts are solved in order within the profile. If two wearables mutually hide

Hides list is mostly used at rendering time.

## Replaces

This list represents the categories a wearable replace. It’s used when constructing the avatar in the editor. For intance, your _greek mask_ covers most of your face, so you want any eyewear to be replaced; if you equip it in the Avatar Editor any eyewear equiped will be unequiped.

Conflicts are _not posible_ at rendering time, an avatar profile containing a wearable within the _replaces_ _list_ of another one should never be received. If this were to happen both wearables will be visible and rendered.

# Representations

A _wearable_ definition holds an array of representations that determines its content for a specific bodyshape. The lack of a representation for a bodyshape is handled as an incompatibility.
Expand All @@ -86,7 +79,6 @@ A _wearable_ definition holds an array of representations that determines its co
{
"bodyShapes": ["urn:decentraland:off-chain:base-avatars:BaseMale"],
"mainFile": "F_Eyewear_BlackSunglasses.glb",
"overrideReplaces": [],
"overrideHides": [],
"contents": [
{
Expand All @@ -108,23 +100,15 @@ Avatars shouldn’t run naked around the world, to prevent this a fallback syste
- _BaseFemale_
```
"eyes" => "urn:decentraland:off-chain:base-avatars:f_eyes_00"
"eyebrows" => "urn:decentraland:off-chain:base-avatars:f_eyebrows_00"
"mouth" => "urn:decentraland:off-chain:base-avatars:f_mouth_00"
"hair" => "urn:decentraland:off-chain:base-avatars:standard_hair"
"upper_body" => "urn:decentraland:off-chain:base-avatars:f_sweater"
"lower_body" => "urn:decentraland:off-chain:base-avatars:f_jeans"
"feet" => "urn:decentraland:off-chain:base-avatars:bun_shoes"
```
- _BaseMale_
```
"eyes" => "urn:decentraland:off-chain:base-avatars:eyes_00"
"eyebrows" => "urn:decentraland:off-chain:base-avatars:eyebrows_00"
"mouth" => "urn:decentraland:off-chain:base-avatars:mouth_00"
"hair" => "urn:decentraland:off-chain:base-avatars:casual_hair_01"
"facial" => "urn:decentraland:off-chain:base-avatars:beard"
"upper_body" => "urn:decentraland:off-chain:base-avatars:green_hoodie"
"lower_body" => "urn:decentraland:off-chain:base-avatars:brown_pants"
"feet" => "urn:decentraland:off-chain:base-avatars:sneakers"
```

# Cheat sheet
Expand All @@ -133,7 +117,7 @@ This is a summary of the process to render an avatar.

1. Gather the _bodyshape._
2. Filter out _wearables_ that doesn’t contain a _representation_ for that _bodyshape._
3. Iterate the hides list and remove affected _wearables_ from the process.
3. Iterate the hides list and remove affected _wearables_ from the process if not present in the _forceRender_ field.
4. Fill _required categories_ with default _wearables_ for the _bodyshape._
5. Download the wearable assets.
1. If the download fails, fallback to a default one.
Expand Down

0 comments on commit 03220da

Please sign in to comment.