43557989f5
The subsystem that was fully greyed-out this morning now lists a card on the transfer
market: price screen, Submit, "your item is now up for trade", TRANSFER LIST 0/100,
auctionCount 1, and STORE.listings() holds the auction. Every step verified at the
instruction level first, then confirmed live. Three fixes, all behind flags, all off by
default until this run proved them.
1. WE WERE BANNING OUR OWN TRADING. userInfo.feature (atom 0x11c) is a RESTRICTION map,
not a grant; we sent feature={"trade":true}, which is a trade BAN. Verified in
q_feature_trade.py: FUN_18013ec10 parses feature/trade into userInfo+0x17c, and at
the massinfo END_OBJECT the client runs
cmp byte [rsi+0x17c],0 / jz skip / mov dword [rsi+0x50],0
feeding applier 0x18011dc91 -> IS_TRADING_ENABLED (model+0x1fd2e) = 0. It runs LAST
and unconditionally, which is why the gate read 0 all day regardless of /settings or
the Blaze config store. FUT_TRADING sends feature={} instead. Live: gate flipped
0 -> 1 on UT re-entry (model rebuilt, pointer changed, byte read 1).
2. TRANSFER LIST CAPACITY 0/0. pileSizeClientData (massinfo atom 0x227, parser
0x18013adb0) is the capacity, NOT the "MY CLUB counter" the old comment claimed.
Verified in q_pilesize_keys.py: exactly two storing arms, key 2 -> model+0x1fd1c
(TRADE_PILE_SIZE) and key 4 -> +0x1fd20 (watch list), every other key SKIP'd. The old
code would have sprayed the 246 club count into the capacity. FUT_PILESIZES sends
key 2 = 100, key 4 = 50. Live: capacity read 0 -> 100, header showed 0/100.
3. THE PRICE SCREEN FROZE THE CLIENT. GET marketdata/pricelimits was answered with an
OBJECT {minPrice,maxPrice}; the deser 0x180163ee0 reads a BARE TOP-LEVEL ARRAY
(root loop while tok != 0xd), so object-where-array desynced the SAX reader into the
0x1801c7f1a busy loop (confirmed live: utime climbing 227 ticks/s, core pinned).
Verified in q_pricelimits.py: element fields defId 0xcf, maxPrice 0x1c2, minPrice
0x1ca, all scalar ints. marketdata_route now returns a bare array, one element per
requested defId. Live: price screen opened and Submit succeeded.
Corrected along the way, all now in the code: two prior "trading root causes" from
earlier today were wrong (the Blaze IS_TRADING_ENABLED keys are output-only names, and
the applier is a virtual method at vtable+0x988, not unreachable). Those refutations are
recorded in blaze_responder_v3b.py and the doc.
Also lands the transfer-market recon doc (plan-2026-08-06-transfer-market.md) and the
market Ghidra query set.
Server-authoritative economy note: the 5% transfer fee and the price bands (currently a
150..15000 placeholder per defId) are not yet real; that is refinement, not a freeze.
The live-auction market SCREEN ("List on Transfer Market" browse) is a separate surface
still to do (P4 auction-counts route, P5 empty market bodies).
Live: 439 contract checks pass. Card listed and persisted, auctionCount 1.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
44 lines
2.1 KiB
Python
44 lines
2.1 KiB
Python
"""DIM4 Q1/Q2/Q3/Q4. Decompile the 12 market RESPONSE deserializers to confirm/extend
|
|
their atom sets, plus the error-envelope mapper FUN_1801844c0 (reached when the
|
|
ISOfferTrade code is NOT 0x1cd) and the two URL builders Ghidra left undefined.
|
|
|
|
CONTROL: FutISSearch 0x180163420 and FutGetTradePile 0x180170810 are documented HIGH
|
|
in ENDPOINT_MAP as tail-delegating to the shared IS-list body 0x18013e7f0. If the
|
|
decompile of those two shows the call to 0x18013e7f0, the deser VAs in ENDPOINT_MAP
|
|
are right and the same list can be trusted for the MED ones (RelistAll, ISWatchTrade,
|
|
ISRemoveTrade, ISRemoveWatch) whose bodies were only partially read.
|
|
"""
|
|
import traceback
|
|
try:
|
|
DESER = [
|
|
("FutISSearch(CONTROL)", 0x180163420),
|
|
("FutGetTradePile(CONTROL)", 0x180170810),
|
|
("FutISStart", 0x180165d70),
|
|
("FutISViewTrade", 0x1801644d0),
|
|
("FutISWatchList", 0x180166130),
|
|
("FutISWatchTrade", 0x180164cd0),
|
|
("FutISOfferTrade", 0x180165410),
|
|
("FutISRemoveTrade", 0x1801648d0),
|
|
("FutISRemoveWatch", 0x1801659f0),
|
|
("FutRelistAll", 0x180164210),
|
|
("FutGetAuctionCount", 0x180163670),
|
|
("FutGetSuggestedPricing", 0x180163bb0),
|
|
("errenvelope_generic", 0x1801844c0),
|
|
("dupItemIdList elem", 0x180138e10),
|
|
]
|
|
for nm, a in DESER:
|
|
print("\n########## %s @ %#x ##########" % (nm, a))
|
|
f = func(a)
|
|
print("fn=%s @ %#x" % (f.getName() if f else "NONE",
|
|
int(f.getEntryPoint().getOffset()) if f else 0))
|
|
s = dec(a)
|
|
print("len(src)=%d" % len(s)); print(s)
|
|
# who READS the per-action enable byte at actiontable row+0x21?
|
|
print("\n########## xrefs to action table 0x1802caa20 and row0 flag 0x1802caa41 ##########")
|
|
for a in (0x1802caa20, 0x1802caa40, 0x1802caa41):
|
|
print(" -- %#x" % a)
|
|
for frm, typ, fn, ent in xrefs_to(a):
|
|
print(" from %#x %s in %s @ %#x" % (frm, typ, fn, ent))
|
|
except Exception:
|
|
traceback.print_exc()
|