Changeset 443


Ignore:
Timestamp:
Jun 10, 2023, 5:47:43 PM (17 months ago)
Author:
alloc
Message:

23_26_40 (A21)

Location:
binary-improvements
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/7dtd-server-fixes.csproj

    r420 r443  
    1111    <RootNamespace>AllocsFixes</RootNamespace>
    1212    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
     13    <LangVersion>9</LangVersion>
    1314  </PropertyGroup>
    1415  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  • binary-improvements/7dtd-server-fixes/ModInfo.xml

    r442 r443  
    55                <Description value="Common functions" />
    66                <Author value="Christian 'Alloc' Illy" />
    7                 <Version value="25" />
     7                <Version value="26" />
    88                <Website value="http://7dtd.illy.bz" />
    99        </ModInfo>
  • binary-improvements/7dtd-server-fixes/src/API.cs

    r371 r443  
    2323
    2424                public void SavePlayerData (ClientInfo _cInfo, PlayerDataFile _playerDataFile) {
    25                         PersistentContainer.Instance.Players [_cInfo.InternalId, true].Update (_playerDataFile);
     25                        PersistentContainer.Instance.Players [_cInfo.InternalId, true].Update (_cInfo, _playerDataFile);
    2626                }
    2727
  • binary-improvements/7dtd-server-fixes/src/PersistentData/Player.cs

    r369 r443  
    141141                }
    142142
    143                 public void Update (PlayerDataFile _pdf) {
    144                         UpdateProgression (_pdf);
     143                public void Update (ClientInfo _clientInfo, PlayerDataFile _pdf) {
     144                        UpdateProgression (_clientInfo, _pdf);
    145145                        inventory.Update (_pdf);
    146146                }
    147147
    148                 private void UpdateProgression (PlayerDataFile _pdf) {
     148                private void UpdateProgression (ClientInfo _clientInfo, PlayerDataFile _pdf) {
    149149                        if (_pdf.progressionData.Length <= 0) {
    150150                                return;
    151151                        }
    152152
    153                         using (PooledBinaryReader pbr = MemoryPools.poolBinaryReader.AllocSync (false)) {
    154                                 pbr.SetBaseStream (_pdf.progressionData);
    155                                 long posBefore = pbr.BaseStream.Position;
    156                                 pbr.BaseStream.Position = 0;
    157                                 Progression p = Progression.Read (pbr, null);
    158                                 pbr.BaseStream.Position = posBefore;
    159                                 expToNextLevel = (uint) p.ExpToNextLevel;
    160                                 level = p.Level;
     153                        if (!GameManager.Instance.World.Entities.dict.TryGetValue (_clientInfo.entityId, out Entity entity)) {
     154                                return;
    161155                        }
     156
     157                        if (entity is not EntityPlayer ep) {
     158                                return;
     159                        }
     160
     161                        expToNextLevel = (uint)ep.Progression.ExpToNextLevel;
     162                        level = ep.Progression.Level;
    162163                }
    163164
  • binary-improvements/bin/Mods/Allocs_CommonFunc/ModInfo.xml

    r442 r443  
    55                <Description value="Common functions" />
    66                <Author value="Christian 'Alloc' Illy" />
    7                 <Version value="25" />
     7                <Version value="26" />
    88                <Website value="http://7dtd.illy.bz" />
    99        </ModInfo>
Note: See TracChangeset for help on using the changeset viewer.