Ignore:
Timestamp:
Jan 27, 2023, 7:28:00 PM (22 months ago)
Author:
alloc
Message:
  • Major refactoring
  • Using Utf8Json for (de)serialization
  • Moving APIs to REST
  • Removing dependencies from WebServer and MapRenderer to ServerFixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements2/CommandExtensions/src/Commands/ShowInventory.cs

    r391 r402  
    4747
    4848                        if (tag == null) {
    49                                 SdtdConsole.Instance.Output ("Belt of player " + p.Name + ":");
     49                                SdtdConsole.Instance.Output ($"Belt of player {p.Name}:");
    5050                        }
    5151
     
    5656
    5757                        if (tag == null) {
    58                                 SdtdConsole.Instance.Output ("Bagpack of player " + p.Name + ":");
     58                                SdtdConsole.Instance.Output ($"Bagpack of player {p.Name}:");
    5959                        }
    6060
     
    6565
    6666                        if (tag == null) {
    67                                 SdtdConsole.Instance.Output ("Equipment of player " + p.Name + ":");
     67                                SdtdConsole.Instance.Output ($"Equipment of player {p.Name}:");
    6868                        }
    6969
     
    7171
    7272                        if (tag != null) {
    73                                 SdtdConsole.Instance.Output ("tracker_item id=" + p.EntityID + ", tag=" + tag +
    74                                                              ", SHOWINVENTORY DONE");
     73                                SdtdConsole.Instance.Output ($"tracker_item id={p.EntityID}, tag={tag}, SHOWINVENTORY DONE");
    7574                        }
    7675                }
     
    9493                                        // Tag defined -> parseable output
    9594                                        string partsMsg = DoParts (_inv [i].parts, 1, "");
    96                                         string msg = "tracker_item id=" + _entityId + ", tag=" + _tag + ", location=" + _location +
    97                                                      ", slot=" + i + ", item=" + _inv [i].itemName + ", qnty=" + _inv [i].count +
    98                                                      ", quality=" + _inv [i].quality + ", parts=(" + partsMsg + ")";
     95                                        string msg =
     96                                                $"tracker_item id={_entityId}, tag={_tag}, location={_location}, slot={i}, item={_inv [i].itemName}, qnty={_inv [i].count}, quality={_inv [i].quality}, parts=({partsMsg})";
    9997                                        SdtdConsole.Instance.Output (msg);
    10098                                }
     
    140138                                        // Tag defined -> parseable output
    141139                                        string partsMsg = DoParts (_items [slotindices [i]].parts, 1, "");
    142                                         string msg = "tracker_item id=" + _entityId + ", tag=" + _tag + ", location=" + _location +
    143                                                      ", slot=" + _slotname + ", item=" + item.itemName + ", qnty=1, quality=" +
    144                                                      item.quality + ", parts=(" + partsMsg + ")";
     140                                        string msg =
     141                                                $"tracker_item id={_entityId}, tag={_tag}, location={_location}, slot={_slotname}, item={item.itemName}, qnty=1, quality={item.quality}, parts=({partsMsg})";
    145142                                        SdtdConsole.Instance.Output (msg);
    146143                                }
     
    176173                                        }
    177174
    178                                         _currentMessage += _parts [i].itemName + "@" + _parts [i].quality;
     175                                        _currentMessage += $"{_parts [i].itemName}@{_parts [i].quality}";
    179176                                        _currentMessage = DoParts (_parts [i].parts, _indent + 1, _currentMessage);
    180177                                }
Note: See TracChangeset for help on using the changeset viewer.