Skip to content

Commit

Permalink
Shows Patternf for Unapplied Charms on SCM and Inventory
Browse files Browse the repository at this point in the history
  • Loading branch information
Step7750 committed Nov 5, 2024
1 parent 3ed6053 commit a344152
Show file tree
Hide file tree
Showing 5 changed files with 91 additions and 38 deletions.
5 changes: 5 additions & 0 deletions src/lib/bridge/handlers/fetch_inspect_info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,13 @@ interface Sticker {
wear?: number;
}

interface Keychain extends Sticker {
pattern: number;
}

export interface ItemInfo {
stickers: Sticker[];
keychains: Keychain[];
itemid: string;
defindex: number;
paintindex: number;
Expand Down
56 changes: 34 additions & 22 deletions src/lib/components/common/item_holder_metadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {state} from 'lit/decorators.js';
import {rgAsset} from '../../types/steam';
import {gFloatFetcher} from '../../services/float_fetcher';
import {ItemInfo} from '../../bridge/handlers/fetch_inspect_info';
import {formatFloatWithRank, formatSeed, getFadePercentage, getLowestRank} from '../../utils/skin';
import {formatFloatWithRank, formatSeed, getFadePercentage, getLowestRank, isCharm} from '../../utils/skin';
import {isSkin, floor} from '../../utils/skin';
import {getRankColour} from '../../utils/ranks';
import {Observe} from '../../utils/observers';
Expand Down Expand Up @@ -67,29 +67,41 @@ export abstract class ItemHolderMetadata extends FloatElement {
}

protected render(): HTMLTemplateResult {
if (!this.itemInfo) return html``;
if (!this.itemInfo || !this.asset) return html``;

const fadePercentage = this.asset && getFadePercentage(this.asset, this.itemInfo);
if (isSkin(this.asset)) {
const fadePercentage = this.asset && getFadePercentage(this.asset, this.itemInfo);

if (fadePercentage === 100) {
$J(this).parent().addClass('full-fade-border');
}
if (fadePercentage === 100) {
$J(this).parent().addClass('full-fade-border');
}

const rank = getLowestRank(this.itemInfo);

return html`
<span>
<span class="float">${formatFloatWithRank(this.itemInfo, 6)}</span>
<span class="seed"
>${formatSeed(this.itemInfo)}
${fadePercentage !== undefined
? html`<span class="fade ${rank && rank <= 5 ? 'csfloat-shine-fade-text' : ''}"
>(${floor(fadePercentage, 1)}%)</span
>`
: nothing}</span
>
</span>
`;
const rank = getLowestRank(this.itemInfo);

return html`
<span>
<span class="float">${formatFloatWithRank(this.itemInfo, 6)}</span>
<span class="seed"
>${formatSeed(this.itemInfo)}
${fadePercentage !== undefined
? html`<span class="fade ${rank && rank <= 5 ? 'csfloat-shine-fade-text' : ''}"
>(${floor(fadePercentage, 1)}%)</span
>`
: nothing}</span
>
</span>
`;
} else if (isCharm(this.asset)) {
return html`
<span>
<span class="seed"
>#${this.itemInfo.keychains?.length > 0 ? this.itemInfo.keychains[0].pattern : 'NA'}</span
>
</span>
`;
} else {
return html``;
}
}

async connectedCallback() {
Expand All @@ -114,7 +126,7 @@ export abstract class ItemHolderMetadata extends FloatElement {
async onInit() {
if (!this.asset) return;

if (!isSkin(this.asset)) return;
if (!isSkin(this.asset) && !isCharm(this.asset)) return;

// Commodities won't have inspect links
if (!this.inspectLink) return;
Expand Down
39 changes: 26 additions & 13 deletions src/lib/components/inventory/selected_item_info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {state} from 'lit/decorators.js';
import {InventoryAsset} from '../../types/steam';
import {gFloatFetcher} from '../../services/float_fetcher';
import {ItemInfo} from '../../bridge/handlers/fetch_inspect_info';
import {formatSeed, getFadePercentage, isSkin, renderClickableRank, floor} from '../../utils/skin';
import {formatSeed, getFadePercentage, isSkin, renderClickableRank, floor, isCharm} from '../../utils/skin';
import {Observe} from '../../utils/observers';
import {FetchStallResponse} from '../../bridge/handlers/fetch_stall';
import {gStallFetcher} from '../../services/stall_fetcher';
Expand Down Expand Up @@ -86,20 +86,33 @@ export class SelectedItemInfo extends FloatElement {
return html`<div>Loading...</div>`;
}

if (!this.itemInfo) {
if (!this.itemInfo || !this.asset?.description) {
return html``;
}

const fadePercentage = this.asset && getFadePercentage(this.asset.description, this.itemInfo);

return html`
<div class="container">
<div>Float: ${this.itemInfo.floatvalue.toFixed(14)} ${renderClickableRank(this.itemInfo)}</div>
<div>Paint Seed: ${formatSeed(this.itemInfo)}</div>
${fadePercentage !== undefined ? html`<div>Fade: ${floor(fadePercentage, 5)}%</div>` : nothing}
${this.renderListOnCSFloat()} ${this.renderFloatMarketListing()}
</div>
`;
if (isSkin(this.asset.description)) {
const fadePercentage = this.asset && getFadePercentage(this.asset.description, this.itemInfo);

return html`
<div class="container">
<div>Float: ${this.itemInfo.floatvalue.toFixed(14)} ${renderClickableRank(this.itemInfo)}</div>
<div>Paint Seed: ${formatSeed(this.itemInfo)}</div>
${fadePercentage !== undefined ? html`<div>Fade: ${floor(fadePercentage, 5)}%</div>` : nothing}
${this.renderListOnCSFloat()} ${this.renderFloatMarketListing()}
</div>
`;
} else if (isCharm(this.asset.description)) {
return html`
<div class="container">
<div>
Pattern:
#${this.itemInfo.keychains?.length > 0 ? this.itemInfo.keychains[0].pattern : 'Unknown'}
</div>
</div>
`;
} else {
return html``;
}
}

renderFloatMarketListing(): TemplateResult<1> {
Expand Down Expand Up @@ -147,7 +160,7 @@ export class SelectedItemInfo extends FloatElement {

if (!this.asset) return;

if (!isSkin(this.asset.description)) return;
if (!isSkin(this.asset.description) && !isCharm(this.asset.description)) return;

// Commodities won't have inspect links
if (!this.inspectLink) return;
Expand Down
16 changes: 13 additions & 3 deletions src/lib/components/market/item_row_wrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {rgAsset, ListingData} from '../../types/steam';
import {gFloatFetcher} from '../../services/float_fetcher';
import {ItemInfo} from '../../bridge/handlers/fetch_inspect_info';
import {getMarketInspectLink, inlineEasyInspect, inlineStickers} from './helpers';
import {formatSeed, getFadePercentage, isSkin, renderClickableRank, floor} from '../../utils/skin';
import {formatSeed, getFadePercentage, isSkin, renderClickableRank, floor, isCharm} from '../../utils/skin';
import {gFilterService} from '../../services/filter';
import {AppId, ContextId, Currency} from '../../types/steam_constants';
import {defined} from '../../utils/checkers';
Expand Down Expand Up @@ -145,11 +145,15 @@ export class ItemRowWrapper extends FloatElement {
return html``;
}

if (this.asset && !isSkin(this.asset)) {
if (!this.asset) {
return nothing;
}

if (this.itemInfo) {
if (this.asset && !isSkin(this.asset) && !isCharm(this.asset)) {
return nothing;
}

if (this.itemInfo && isSkin(this.asset)) {
const fadePercentage = this.asset && getFadePercentage(this.asset, this.itemInfo);

return html`
Expand All @@ -162,6 +166,12 @@ export class ItemRowWrapper extends FloatElement {
: nothing}
</div>
`;
} else if (this.itemInfo && isCharm(this.asset)) {
return html`
<div class="float-row-wrapper">
Pattern: #${this.itemInfo.keychains?.length > 0 ? this.itemInfo.keychains[0].pattern : 'Unknown'}
</div>
`;
} else if (this.error) {
return html`<div style="color: orangered">CSFloat ${this.error}</div>`;
} else {
Expand Down
13 changes: 13 additions & 0 deletions src/lib/utils/skin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,19 @@ export function isSkin(asset: rgAsset): boolean {
);
}

export function isCharm(asset: rgAsset): boolean {
if (asset.market_hash_name.startsWith('Charm')) {
// Tags aren't available on SCM items, so use a MHN heuristic instead
return true;
}

if (!asset.tags) {
return false;
}

return asset.tags.some((e) => e.category === 'Type' && e.internal_name === 'CSGO_Tool_Keychain');
}

export function getFadeCalculatorAndSupportedWeapon(
asset: rgAsset
): [typeof FadeCalculator | typeof AcidFadeCalculator | typeof AmberFadeCalculator, string] | undefined {
Expand Down

0 comments on commit a344152

Please sign in to comment.