You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

192 lines
4.8 KiB

//============================================
//--4>:
// Exported by ExcelConfigExport
//
// 此代码为工具根据配置自动生成, 请不要修改
//
//============================================
using System;
using Sog;
using System.Collections.Generic;
using Newtonsoft.Json.Linq;
using System.IO;
using System.Linq;
public partial class LevelDescMgr : IConfigManager
{
//Singleton
private static LevelDescMgr _instance;
private static readonly object syslock = new object();
public static LevelDescMgr Instance { get { if (_instance == null) { lock (syslock) { if (_instance == null) { _instance = new LevelDescMgr(); }}} return _instance; }}
public class ItemData
{
public LevelDesc Item;
public int Line;
public bool ReadAlready;
}
protected Dictionary<int, ItemData> m_ItemTable = new ();
protected Dictionary<int, LevelDesc> n_ItemTable = new ();
//for server only, m_readKeyOnly must be false
protected SortedList<int, LevelDesc> m_ItemDescTable = new ();
public SortedList<int, LevelDesc> ItemTable { get {
if (m_ItemDescTable.Count == 0) { foreach (var item in m_ItemTable) { m_ItemDescTable.Add(item.Key, item.Value.Item); }}
return m_ItemDescTable; } }
private TabBinFile m_tbf;
//private TabTextFile m_tf;
private int m_curAsynKey1;
public override bool InitBin(string fileName, byte[] fileContent)
{
m_ErrorCount = 0;
m_ItemTable.Clear();
n_ItemTable.Clear();
m_ItemDescTable.Clear();
m_allRead = false;
m_curAsynKey1 = 0;
m_tbf = new TabBinFile(fileName, fileContent);
while (m_tbf.Next())
{
ItemData itemData = new ItemData() { Item = new LevelDesc() };
var item = itemData.Item;
if (m_readKeyOnly) {m_tbf.SetCurrentCol(0); }
if (item.ReadItemBin(m_tbf, m_readKeyOnly) == false)
{
TraceLog.Error("Failed to InitBin TabManager:{0}, read line error, line: {1}", this.ToString(), m_tbf.CurrentLine);
m_ErrorCount++;
continue;
}
if (m_ItemTable.ContainsKey(item.GetKey1()))
{
TraceLog.Error("Failed to InitBin TabManager:{0}, multi key:{1}, line: {2}", this.ToString(), item.GetKey1(), m_tbf.CurrentLine);
m_ErrorCount++;
continue;
}
m_ItemTable.Add(item.GetKey1(), itemData);
n_ItemTable.Add(item.InternalId, item);
if (m_readKeyOnly)
{
itemData.Line = m_tbf.CurrentLine;
}
else
{
itemData.ReadAlready = true;
}
}
if (!m_readKeyOnly)
{
m_tbf = null;
}
return true;
}
public LevelDesc GetConfig(int key)
{
ItemData itemData;
if (m_ItemTable.TryGetValue(key, out itemData) == false)
{
return null;
}
if(itemData.ReadAlready)
{
return itemData.Item;
}
if (m_tbf == null)
{
TraceLog.Error("Cfg1KeyMgrTemplate.GetConfig Failed fs null TabManager:{ 0}, read line error,", this.ToString());
return null;
}
m_tbf.SetCurrentLine(itemData.Line);
m_tbf.SetCurrentCol(0);
itemData.ReadAlready = true;
if (itemData.Item.ReadItemBin(m_tbf, false) == false)
{
TraceLog.Error("Cfg1KeyMgrTemplate.GetConfig Failed to init TabManager:{0}, read line error, line: {1}", this.ToString(), m_tbf.CurrentLine);
return null;
}
return itemData.Item;
}
public LevelDesc GetConfigByInternal(int internalId)
{
var desc = n_ItemTable.GetValueOrDefault(internalId, null);
if (desc == null)
{
TraceLog.Error("Cfg1KeyMgrTemplate.Get by InternalId Failed fs null TabManager:{0}, internalId={1},read line error,", this.ToString(), internalId);
}
return desc;
}
}
public partial class LevelDesc
{
public static readonly string _KEY_InternalId = "InternalId";
public static readonly string _KEY_level = "level";
public static readonly string _KEY_levelUpExp = "levelUpExp";
public static readonly string _KEY_hp = "hp";
public static readonly string _KEY_atk = "atk";
public static readonly string _KEY_def = "def";
/// <summary>
/// 内部ID
/// </summary>
public int InternalId { get; set; }
/// <summary>
/// 等级
/// </summary>
public int level { get; set; }
/// <summary>
/// 下一级所需经验
/// </summary>
public int levelUpExp { get; set; }
/// <summary>
/// 每级拥有基础生命(万分比)
/// </summary>
public long hp { get; set; }
/// <summary>
/// 每级拥有基础攻击(万分比)
/// </summary>
public long atk { get; set; }
/// <summary>
/// 每级拥有基础防御(万分比)
/// </summary>
public long def { get; set; }
public Dictionary<string, Type> listDic = new Dictionary<string, Type>();
public LevelDesc()
{
}
public int GetKey1() { return level; }
public bool ReadItemBin(TabBinFile txf, bool readKeyOnly)
{
InternalId = txf.GetintByIndex(_KEY_InternalId);
level = txf.GetintByIndex(_KEY_level);
if(readKeyOnly) { return true; }
levelUpExp = txf.GetintByIndex(_KEY_levelUpExp);
hp = txf.GetlongByIndex(_KEY_hp);
atk = txf.GetlongByIndex(_KEY_atk);
def = txf.GetlongByIndex(_KEY_def);
return true;
}
}