/classes/tnode.js
https://code.google.com/p/smallgoeditor/ · JavaScript · 337 lines · 223 code · 11 blank · 103 comment · 206 complexity · 67e8541cc8cec94bf7b5e7798bcf425a MD5 · raw file
- //////////////////////////////////////////////////////////////////////////////
- // ?л??? УЗ?Л //
- //////////////////////////////////////////////////////////////////////////////
-
- /****c* SmallGoEditor/TNode
- * NAME
- * ?л??? TNode — уз?л д???в? SGF
- * VERSION
- * 0.3 (17.06.2011)
- * FUNCTION
- * ?л???, о????в????й од?н уз?л д???в? SGF
- * PROPERTIES
- * {Integer} Parent —— ?нд??? ?од???л?
- * {Array} B —— Black
- * {Array} BL —— Black time left
- * {Array} BM —— Bad move
- * {Array} DO —— Doubtful
- * {Array} IT —— Interesting
- * {Array} KO —— Ko
- * {Array} MN —— set MoveNumber
- * {Array} OB —— OtStones Black
- * {Array} OW —— OtStones White
- * {Array} TE —— Tesuji
- * {Array} W —— White
- * {Array} WL —— White time left
- * {Array} AB —— Add Black
- * {Array} AE —— Add Empty
- * {Array} AW —— Add White
- * {Array} PL —— Player to play
- * {Array} AR —— Arrow
- * {Array} C —— Comment
- * {Array} CR —— Circle
- * {Array} DD —— Dim points
- * {Array} DM —— Even position
- * {Array} FG —— Figure
- * {Array} GB —— Good for Black
- * {Array} GW —— Good for White
- * {Array} HO —— Hotspot
- * {Array} LB —— Label
- * {Array} LN —— Line
- * {Array} MA —— Mark
- * {Array} N —— Nodename
- * {Array} PM —— Print move mode
- * {Array} SL —— Selected
- * {Array} SQ —— Square
- * {Array} TR —— Triangle
- * {Array} UC —— Unclear pos
- * {Array} V —— Value
- * {Array} VW —— View
- * {Array} AP —— Application
- * {Array} CA —— Charset
- * {Array} FF —— Fileformat
- * {Array} GM —— Game
- * {Array} ST —— Style
- * {Array} SZ —— Size
- * {Array} AN —— Annotation
- * {Array} BR —— Black rank
- * {Array} BT —— Black team
- * {Array} CP —— Copyright
- * {Array} DT —— Date
- * {Array} EV —— Event
- * {Array} GC —— Game comment
- * {Array} GN —— Game name
- * {Array} ON —— Opening
- * {Array} OT —— Overtime
- * {Array} PB —— Player Black
- * {Array} PC —— Place
- * {Array} PW —— Player White
- * {Array} RE —— Result
- * {Array} RO —— Round
- * {Array} RU —— Rules
- * {Array} SO —— Source
- * {Array} TM —— Timelimit
- * {Array} US —— User
- * {Array} WR —— White rank
- * {Array} WT —— White team
- * {Array} TB —— Territory Black
- * {Array} TW —— Territory White
- * {Array} HA —— Handicap
- * {Array} KM —— Komi
- * METHODS
- * {String} SGF —— возв?????? SGF д?нно?о узл?
- * INPUTS
- * {Integer} Parent —— ?нд??? ?од???л?
- * {Array} Data —— ?????в д?нн?? узл?
- * AUTHOR
- * Dolu mailto:dolu.bl@gmail.com
- *********/
- function TNode(Parent, Data)
- {
- this.Parent = Parent; // ?од???ль
- this.Children = []; // ?????в д???й
-
- this.B = null; // Black
- this.BL = null; // Black time left
- this.BM = null; // Bad move
- this.DO = null; // Doubtful
- this.IT = null; // Interesting
- this.KO = null; // Ko
- this.MN = null; // set MoveNumber
- this.OB = null; // OtStones Black
- this.OW = null; // OtStones White
- this.TE = null; // Tesuji
- this.W = null; // White
- this.WL = null; // White time left
-
- this.AB = null; // Add Black
- this.AE = null; // Add Empty
- this.AW = null; // Add White
- this.PL = null; // Player to play
-
- this.AR = null; // Arrow
- this.C = null; // Comment
- this.CR = null; // Circle
- this.DD = null; // Dim points
- this.DM = null; // Even position
- this.FG = null; // Figure
- this.GB = null; // Good for Black
- this.GW = null; // Good for White
- this.HO = null; // Hotspot
- this.LB = null; // Label
- this.LN = null; // Line
- this.MA = null; // Mark
- this.N = null; // Nodename
- this.PM = null; // Print move mode
- this.SL = null; // Selected
- this.SQ = null; // Square
- this.TR = null; // Triangle
- this.UC = null; // Unclear pos
- this.V = null; // Value
- this.VW = null; // View
-
- this.AP = null; // Application
- this.CA = null; // Charset
- this.FF = null; // Fileformat
- this.GM = null; // Game
- this.ST = null; // Style
- this.SZ = null; // Size
-
- this.AN = null; // Annotation
- this.BR = null; // Black rank
- this.BT = null; // Black team
- this.CP = null; // Copyright
- this.DT = null; // Date
- this.EV = null; // Event
- this.GC = null; // Game comment
- this.GN = null; // Game name
- this.ON = null; // Opening
- this.OT = null; // Overtime
- this.PB = null; // Player Black
- this.PC = null; // Place
- this.PW = null; // Player White
- this.RE = null; // Result
- this.RO = null; // Round
- this.RU = null; // Rules
- this.SO = null; // Source
- this.TM = null; // Timelimit
- this.US = null; // User
- this.WR = null; // White rank
- this.WT = null; // White team
-
- this.TB = null; // Territory Black
- this.TW = null; // Territory White
-
- this.HA = null; // Handicap
- this.KM = null; // Komi
-
- // +—————————————————————————————————————+
- // |?ОН???У??О? (з??олн?н?? узл? д?нн???)|
- // +—————————————————————————————————————+
- for (var i = 0; i < Data.length; i++)
- {
- if (i % 2 === 0)
- {
- switch(Data[i])
- {
- case "B": this.B = Data[i + 1]; break;
- case "BL": this.BL = Data[i + 1]; break;
- case "BM": this.BM = Data[i + 1]; break;
- case "DO": this.DO = Data[i + 1]; break;
- case "IT": this.IT = Data[i + 1]; break;
- case "KO": this.KO = Data[i + 1]; break;
- case "MN": this.MN = Data[i + 1]; break;
- case "OB": this.OB = Data[i + 1]; break;
- case "OW": this.OW = Data[i + 1]; break;
- case "TE": this.TE = Data[i + 1]; break;
- case "W": this.W = Data[i + 1]; break;
- case "WL": this.WL = Data[i + 1]; break;
- case "AB": this.AB = Data[i + 1]; break;
- case "AE": this.AE = Data[i + 1]; break;
- case "AW": this.AW = Data[i + 1]; break;
- case "PL": this.PL = Data[i + 1]; break;
- case "AR": this.AR = Data[i + 1]; break;
- case "C": this.C = Data[i + 1]; break;
- case "CR": this.CR = Data[i + 1]; break;
- case "DD": this.DD = Data[i + 1]; break;
- case "DM": this.DM = Data[i + 1]; break;
- case "FG": this.FG = Data[i + 1]; break;
- case "GB": this.GB = Data[i + 1]; break;
- case "GW": this.GW = Data[i + 1]; break;
- case "HO": this.HO = Data[i + 1]; break;
- case "LB": this.LB = Data[i + 1]; break;
- case "LN": this.LN = Data[i + 1]; break;
- case "MA": this.MA = Data[i + 1]; break;
- case "N": this.N = Data[i + 1]; break;
- case "PM": this.PM = Data[i + 1]; break;
- case "SL": this.SL = Data[i + 1]; break;
- case "SQ": this.SQ = Data[i + 1]; break;
- case "TR": this.TR = Data[i + 1]; break;
- case "UC": this.UC = Data[i + 1]; break;
- case "V": this.V = Data[i + 1]; break;
- case "VW": this.VW = Data[i + 1]; break;
- case "AP": this.AP = Data[i + 1]; break;
- case "CA": this.CA = Data[i + 1]; break;
- case "FF": this.FF = Data[i + 1]; break;
- case "GM": this.GM = Data[i + 1]; break;
- case "ST": this.ST = Data[i + 1]; break;
- case "SZ": this.SZ = Data[i + 1]; break;
- case "AN": this.AN = Data[i + 1]; break;
- case "BR": this.BR = Data[i + 1]; break;
- case "BT": this.BT = Data[i + 1]; break;
- case "CP": this.CP = Data[i + 1]; break;
- case "DT": this.DT = Data[i + 1]; break;
- case "EV": this.EV = Data[i + 1]; break;
- case "GC": this.GC = Data[i + 1]; break;
- case "GN": this.GN = Data[i + 1]; break;
- case "ON": this.ON = Data[i + 1]; break;
- case "OT": this.OT = Data[i + 1]; break;
- case "PB": this.PB = Data[i + 1]; break;
- case "PC": this.PC = Data[i + 1]; break;
- case "PW": this.PW = Data[i + 1]; break;
- case "RE": this.RE = Data[i + 1]; break;
- case "RO": this.RO = Data[i + 1]; break;
- case "RU": this.RU = Data[i + 1]; break;
- case "SO": this.SO = Data[i + 1]; break;
- case "TM": this.TM = Data[i + 1]; break;
- case "US": this.US = Data[i + 1]; break;
- case "WR": this.WR = Data[i + 1]; break;
- case "WT": this.WT = Data[i + 1]; break;
- case "TB": this.TB = Data[i + 1]; break;
- case "TW": this.TW = Data[i + 1]; break;
- case "HA": this.HA = Data[i + 1]; break;
- case "KM": this.KM = Data[i + 1]; break;
- default:
- // О??Б?? (н?йд?но н??у????ву???? ?вой??во узл?)
- break;
- };
- };
- };
-
- /****m* SmallGoEditor/TNode.SGF
- * NAME
- * SGF — возв?????? SGF д?нно?о узл?
- * FUNCTION
- * Э?о? ???од фо????у?? ? возв?????? SGF д?нн??, дл? д?нно?о узл?.
- * INPUTS
- * -
- * RESULT
- * {String} —— SGF-д?нн?? ?оо?в????ву???? д?нно?у узлу
- * SOURCE
- */
- this.SGF = function()
- {
- var result = "";
- if (this.B != null) { result += "B"; for (var i = 0; i < this.B.length; i++) { result += "[" + this.B[i] + "]"; }; };
- if (this.BL != null) { result += "BL"; for (var i = 0; i < this.BL.length; i++) { result += "[" + this.BL[i] + "]"; }; };
- if (this.BL != null) { result += "BL"; for (var i = 0; i < this.BL.length; i++) { result += "[" + this.BL[i] + "]"; }; };
- if (this.BM != null) { result += "BM"; for (var i = 0; i < this.BM.length; i++) { result += "[" + this.BM[i] + "]"; }; };
- if (this.DO != null) { result += "DO"; for (var i = 0; i < this.DO.length; i++) { result += "[" + this.DO[i] + "]"; }; };
- if (this.IT != null) { result += "IT"; for (var i = 0; i < this.IT.length; i++) { result += "[" + this.IT[i] + "]"; }; };
- if (this.KO != null) { result += "KO"; for (var i = 0; i < this.KO.length; i++) { result += "[" + this.KO[i] + "]"; }; };
- if (this.MN != null) { result += "MN"; for (var i = 0; i < this.MN.length; i++) { result += "[" + this.MN[i] + "]"; }; };
- if (this.OB != null) { result += "OB"; for (var i = 0; i < this.OB.length; i++) { result += "[" + this.OB[i] + "]"; }; };
- if (this.OW != null) { result += "OW"; for (var i = 0; i < this.OW.length; i++) { result += "[" + this.OW[i] + "]"; }; };
- if (this.TE != null) { result += "TE"; for (var i = 0; i < this.TE.length; i++) { result += "[" + this.TE[i] + "]"; }; };
- if (this.W != null) { result += "W" ; for (var i = 0; i < this.W.length; i++) { result += "[" + this.W[i] + "]"; }; };
- if (this.WL != null) { result += "WL"; for (var i = 0; i < this.WL.length; i++) { result += "[" + this.WL[i] + "]"; }; };
- if (this.AB != null) { result += "AB"; for (var i = 0; i < this.AB.length; i++) { result += "[" + this.AB[i] + "]"; }; };
- if (this.AE != null) { result += "AE"; for (var i = 0; i < this.AE.length; i++) { result += "[" + this.AE[i] + "]"; }; };
- if (this.AW != null) { result += "AW"; for (var i = 0; i < this.AW.length; i++) { result += "[" + this.AW[i] + "]"; }; };
- if (this.PL != null) { result += "PL"; for (var i = 0; i < this.PL.length; i++) { result += "[" + this.PL[i] + "]"; }; };
- if (this.AR != null) { result += "AR"; for (var i = 0; i < this.AR.length; i++) { result += "[" + this.AR[i] + "]"; }; };
- if (this.C != null) { result += "C" ; for (var i = 0; i < this.C.length; i++) { result += "[" + this.C[i] + "]"; }; };
- if (this.CR != null) { result += "CR"; for (var i = 0; i < this.CR.length; i++) { result += "[" + this.CR[i] + "]"; }; };
- if (this.DD != null) { result += "DD"; for (var i = 0; i < this.DD.length; i++) { result += "[" + this.DD[i] + "]"; }; };
- if (this.DM != null) { result += "DM"; for (var i = 0; i < this.DM.length; i++) { result += "[" + this.DM[i] + "]"; }; };
- if (this.FG != null) { result += "FG"; for (var i = 0; i < this.FG.length; i++) { result += "[" + this.FG[i] + "]"; }; };
- if (this.GB != null) { result += "GB"; for (var i = 0; i < this.GB.length; i++) { result += "[" + this.GB[i] + "]"; }; };
- if (this.GW != null) { result += "GW"; for (var i = 0; i < this.GW.length; i++) { result += "[" + this.GW[i] + "]"; }; };
- if (this.HO != null) { result += "HO"; for (var i = 0; i < this.HO.length; i++) { result += "[" + this.HO[i] + "]"; }; };
- if (this.LB != null) { result += "LB"; for (var i = 0; i < this.LB.length; i++) { result += "[" + this.LB[i] + "]"; }; };
- if (this.LN != null) { result += "LN"; for (var i = 0; i < this.LN.length; i++) { result += "[" + this.LN[i] + "]"; }; };
- if (this.MA != null) { result += "MA"; for (var i = 0; i < this.MA.length; i++) { result += "[" + this.MA[i] + "]"; }; };
- if (this.N != null) { result += "N" ; for (var i = 0; i < this.N.length; i++) { result += "[" + this.N[i] + "]"; }; };
- if (this.PM != null) { result += "PM"; for (var i = 0; i < this.PM.length; i++) { result += "[" + this.PM[i] + "]"; }; };
- if (this.SL != null) { result += "SL"; for (var i = 0; i < this.SL.length; i++) { result += "[" + this.SL[i] + "]"; }; };
- if (this.SQ != null) { result += "SQ"; for (var i = 0; i < this.SQ.length; i++) { result += "[" + this.SQ[i] + "]"; }; };
- if (this.TR != null) { result += "TR"; for (var i = 0; i < this.TR.length; i++) { result += "[" + this.TR[i] + "]"; }; };
- if (this.UC != null) { result += "UC"; for (var i = 0; i < this.UC.length; i++) { result += "[" + this.UC[i] + "]"; }; };
- if (this.V != null) { result += "V" ; for (var i = 0; i < this.V.length; i++) { result += "[" + this.V[i] + "]"; }; };
- if (this.VW != null) { result += "VW"; for (var i = 0; i < this.VW.length; i++) { result += "[" + this.VW[i] + "]"; }; };
- if (this.AP != null) { result += "AP"; for (var i = 0; i < this.AP.length; i++) { result += "[" + this.AP[i] + "]"; }; };
- if (this.CA != null) { result += "CA"; for (var i = 0; i < this.CA.length; i++) { result += "[" + this.CA[i] + "]"; }; };
- if (this.FF != null) { result += "FF"; for (var i = 0; i < this.FF.length; i++) { result += "[" + this.FF[i] + "]"; }; };
- if (this.GM != null) { result += "GM"; for (var i = 0; i < this.GM.length; i++) { result += "[" + this.GM[i] + "]"; }; };
- if (this.ST != null) { result += "ST"; for (var i = 0; i < this.ST.length; i++) { result += "[" + this.ST[i] + "]"; }; };
- if (this.SZ != null) { result += "SZ"; for (var i = 0; i < this.SZ.length; i++) { result += "[" + this.SZ[i] + "]"; }; };
- if (this.AN != null) { result += "AN"; for (var i = 0; i < this.AN.length; i++) { result += "[" + this.AN[i] + "]"; }; };
- if (this.BR != null) { result += "BR"; for (var i = 0; i < this.BR.length; i++) { result += "[" + this.BR[i] + "]"; }; };
- if (this.BT != null) { result += "BT"; for (var i = 0; i < this.BT.length; i++) { result += "[" + this.BT[i] + "]"; }; };
- if (this.CP != null) { result += "CP"; for (var i = 0; i < this.CP.length; i++) { result += "[" + this.CP[i] + "]"; }; };
- if (this.DT != null) { result += "DT"; for (var i = 0; i < this.DT.length; i++) { result += "[" + this.DT[i] + "]"; }; };
- if (this.EV != null) { result += "EV"; for (var i = 0; i < this.EV.length; i++) { result += "[" + this.EV[i] + "]"; }; };
- if (this.GC != null) { result += "GC"; for (var i = 0; i < this.GC.length; i++) { result += "[" + this.GC[i] + "]"; }; };
- if (this.GN != null) { result += "GN"; for (var i = 0; i < this.GN.length; i++) { result += "[" + this.GN[i] + "]"; }; };
- if (this.ON != null) { result += "ON"; for (var i = 0; i < this.ON.length; i++) { result += "[" + this.ON[i] + "]"; }; };
- if (this.OT != null) { result += "OT"; for (var i = 0; i < this.OT.length; i++) { result += "[" + this.OT[i] + "]"; }; };
- if (this.PB != null) { result += "PB"; for (var i = 0; i < this.PB.length; i++) { result += "[" + this.PB[i] + "]"; }; };
- if (this.PC != null) { result += "PC"; for (var i = 0; i < this.PC.length; i++) { result += "[" + this.PC[i] + "]"; }; };
- if (this.PW != null) { result += "PW"; for (var i = 0; i < this.PW.length; i++) { result += "[" + this.PW[i] + "]"; }; };
- if (this.RE != null) { result += "RE"; for (var i = 0; i < this.RE.length; i++) { result += "[" + this.RE[i] + "]"; }; };
- if (this.RO != null) { result += "RO"; for (var i = 0; i < this.RO.length; i++) { result += "[" + this.RO[i] + "]"; }; };
- if (this.RU != null) { result += "RU"; for (var i = 0; i < this.RU.length; i++) { result += "[" + this.RU[i] + "]"; }; };
- if (this.SO != null) { result += "SO"; for (var i = 0; i < this.SO.length; i++) { result += "[" + this.SO[i] + "]"; }; };
- if (this.TM != null) { result += "TM"; for (var i = 0; i < this.TM.length; i++) { result += "[" + this.TM[i] + "]"; }; };
- if (this.US != null) { result += "US"; for (var i = 0; i < this.US.length; i++) { result += "[" + this.US[i] + "]"; }; };
- if (this.WR != null) { result += "WR"; for (var i = 0; i < this.WR.length; i++) { result += "[" + this.WR[i] + "]"; }; };
- if (this.WT != null) { result += "WT"; for (var i = 0; i < this.WT.length; i++) { result += "[" + this.WT[i] + "]"; }; };
- if (this.TB != null) { result += "TB"; for (var i = 0; i < this.TB.length; i++) { result += "[" + this.TB[i] + "]"; }; };
- if (this.TW != null) { result += "TW"; for (var i = 0; i < this.TW.length; i++) { result += "[" + this.TW[i] + "]"; }; };
- if (this.HA != null) { result += "HA"; for (var i = 0; i < this.HA.length; i++) { result += "[" + this.HA[i] + "]"; }; };
- if (this.KM != null) { result += "KM"; for (var i = 0; i < this.KM.length; i++) { result += "[" + this.KM[i] + "]"; }; };
- return result;
- };
- /*********/
-
- };