Ignore:
Timestamp:
Jan 19, 2019, 6:12:21 PM (6 years ago)
Author:
alloc
Message:

Fixed game version compatibility of GamePrefs
Code style cleanup (mostly argument names)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/src/JSON/JSONBoolean.cs

    r325 r351  
    55                private readonly bool value;
    66
    7                 public JSONBoolean (bool value) {
    8                         this.value = value;
     7                public JSONBoolean (bool _value) {
     8                        value = _value;
    99                }
    1010
     
    1313                }
    1414
    15                 public override void ToString (StringBuilder stringBuilder, bool prettyPrint = false, int currentLevel = 0) {
    16                         stringBuilder.Append (value ? "true" : "false");
     15                public override void ToString (StringBuilder _stringBuilder, bool _prettyPrint = false, int _currentLevel = 0) {
     16                        _stringBuilder.Append (value ? "true" : "false");
    1717                }
    1818
    19                 public static JSONBoolean Parse (string json, ref int offset) {
     19                public static JSONBoolean Parse (string _json, ref int _offset) {
    2020                        //Log.Out ("ParseBool enter (" + offset + ")");
    2121
    22                         if (json.Substring (offset, 4).Equals ("true")) {
     22                        if (_json.Substring (_offset, 4).Equals ("true")) {
    2323                                //Log.Out ("JSON:Parsed Bool: true");
    24                                 offset += 4;
     24                                _offset += 4;
    2525                                return new JSONBoolean (true);
    2626                        }
    2727
    28                         if (json.Substring (offset, 5).Equals ("false")) {
     28                        if (_json.Substring (_offset, 5).Equals ("false")) {
    2929                                //Log.Out ("JSON:Parsed Bool: false");
    30                                 offset += 5;
     30                                _offset += 5;
    3131                                return new JSONBoolean (false);
    3232                        }
Note: See TracChangeset for help on using the changeset viewer.