/classes/tnode.js

https://code.google.com/p/smallgoeditor/ · JavaScript · 337 lines · 223 code · 11 blank · 103 comment · 206 complexity · 67e8541cc8cec94bf7b5e7798bcf425a MD5 · raw file

  1. //////////////////////////////////////////////////////////////////////////////
  2. // ?л??? УЗ?Л //
  3. //////////////////////////////////////////////////////////////////////////////
  4. /****c* SmallGoEditor/TNode
  5. * NAME
  6. * ?л??? TNode — уз?л д???в? SGF
  7. * VERSION
  8. * 0.3 (17.06.2011)
  9. * FUNCTION
  10. * ?л???, о????в????й од?н уз?л д???в? SGF
  11. * PROPERTIES
  12. * {Integer} Parent —— ?нд??? ?од???л?
  13. * {Array} B —— Black
  14. * {Array} BL —— Black time left
  15. * {Array} BM —— Bad move
  16. * {Array} DO —— Doubtful
  17. * {Array} IT —— Interesting
  18. * {Array} KO —— Ko
  19. * {Array} MN —— set MoveNumber
  20. * {Array} OB —— OtStones Black
  21. * {Array} OW —— OtStones White
  22. * {Array} TE —— Tesuji
  23. * {Array} W —— White
  24. * {Array} WL —— White time left
  25. * {Array} AB —— Add Black
  26. * {Array} AE —— Add Empty
  27. * {Array} AW —— Add White
  28. * {Array} PL —— Player to play
  29. * {Array} AR —— Arrow
  30. * {Array} C —— Comment
  31. * {Array} CR —— Circle
  32. * {Array} DD —— Dim points
  33. * {Array} DM —— Even position
  34. * {Array} FG —— Figure
  35. * {Array} GB —— Good for Black
  36. * {Array} GW —— Good for White
  37. * {Array} HO —— Hotspot
  38. * {Array} LB —— Label
  39. * {Array} LN —— Line
  40. * {Array} MA —— Mark
  41. * {Array} N —— Nodename
  42. * {Array} PM —— Print move mode
  43. * {Array} SL —— Selected
  44. * {Array} SQ —— Square
  45. * {Array} TR —— Triangle
  46. * {Array} UC —— Unclear pos
  47. * {Array} V —— Value
  48. * {Array} VW —— View
  49. * {Array} AP —— Application
  50. * {Array} CA —— Charset
  51. * {Array} FF —— Fileformat
  52. * {Array} GM —— Game
  53. * {Array} ST —— Style
  54. * {Array} SZ —— Size
  55. * {Array} AN —— Annotation
  56. * {Array} BR —— Black rank
  57. * {Array} BT —— Black team
  58. * {Array} CP —— Copyright
  59. * {Array} DT —— Date
  60. * {Array} EV —— Event
  61. * {Array} GC —— Game comment
  62. * {Array} GN —— Game name
  63. * {Array} ON —— Opening
  64. * {Array} OT —— Overtime
  65. * {Array} PB —— Player Black
  66. * {Array} PC —— Place
  67. * {Array} PW —— Player White
  68. * {Array} RE —— Result
  69. * {Array} RO —— Round
  70. * {Array} RU —— Rules
  71. * {Array} SO —— Source
  72. * {Array} TM —— Timelimit
  73. * {Array} US —— User
  74. * {Array} WR —— White rank
  75. * {Array} WT —— White team
  76. * {Array} TB —— Territory Black
  77. * {Array} TW —— Territory White
  78. * {Array} HA —— Handicap
  79. * {Array} KM —— Komi
  80. * METHODS
  81. * {String} SGF —— возв?????? SGF д?нно?о узл?
  82. * INPUTS
  83. * {Integer} Parent —— ?нд??? ?од???л?
  84. * {Array} Data —— ?????в д?нн?? узл?
  85. * AUTHOR
  86. * Dolu mailto:dolu.bl@gmail.com
  87. *********/
  88. function TNode(Parent, Data)
  89. {
  90. this.Parent = Parent; // ?од???ль
  91. this.Children = []; // ?????в д???й
  92. this.B = null; // Black
  93. this.BL = null; // Black time left
  94. this.BM = null; // Bad move
  95. this.DO = null; // Doubtful
  96. this.IT = null; // Interesting
  97. this.KO = null; // Ko
  98. this.MN = null; // set MoveNumber
  99. this.OB = null; // OtStones Black
  100. this.OW = null; // OtStones White
  101. this.TE = null; // Tesuji
  102. this.W = null; // White
  103. this.WL = null; // White time left
  104. this.AB = null; // Add Black
  105. this.AE = null; // Add Empty
  106. this.AW = null; // Add White
  107. this.PL = null; // Player to play
  108. this.AR = null; // Arrow
  109. this.C = null; // Comment
  110. this.CR = null; // Circle
  111. this.DD = null; // Dim points
  112. this.DM = null; // Even position
  113. this.FG = null; // Figure
  114. this.GB = null; // Good for Black
  115. this.GW = null; // Good for White
  116. this.HO = null; // Hotspot
  117. this.LB = null; // Label
  118. this.LN = null; // Line
  119. this.MA = null; // Mark
  120. this.N = null; // Nodename
  121. this.PM = null; // Print move mode
  122. this.SL = null; // Selected
  123. this.SQ = null; // Square
  124. this.TR = null; // Triangle
  125. this.UC = null; // Unclear pos
  126. this.V = null; // Value
  127. this.VW = null; // View
  128. this.AP = null; // Application
  129. this.CA = null; // Charset
  130. this.FF = null; // Fileformat
  131. this.GM = null; // Game
  132. this.ST = null; // Style
  133. this.SZ = null; // Size
  134. this.AN = null; // Annotation
  135. this.BR = null; // Black rank
  136. this.BT = null; // Black team
  137. this.CP = null; // Copyright
  138. this.DT = null; // Date
  139. this.EV = null; // Event
  140. this.GC = null; // Game comment
  141. this.GN = null; // Game name
  142. this.ON = null; // Opening
  143. this.OT = null; // Overtime
  144. this.PB = null; // Player Black
  145. this.PC = null; // Place
  146. this.PW = null; // Player White
  147. this.RE = null; // Result
  148. this.RO = null; // Round
  149. this.RU = null; // Rules
  150. this.SO = null; // Source
  151. this.TM = null; // Timelimit
  152. this.US = null; // User
  153. this.WR = null; // White rank
  154. this.WT = null; // White team
  155. this.TB = null; // Territory Black
  156. this.TW = null; // Territory White
  157. this.HA = null; // Handicap
  158. this.KM = null; // Komi
  159. // +—————————————————————————————————————+
  160. // |?ОН???У??О? (з??олн?н?? узл? д?нн???)|
  161. // +—————————————————————————————————————+
  162. for (var i = 0; i < Data.length; i++)
  163. {
  164. if (i % 2 === 0)
  165. {
  166. switch(Data[i])
  167. {
  168. case "B": this.B = Data[i + 1]; break;
  169. case "BL": this.BL = Data[i + 1]; break;
  170. case "BM": this.BM = Data[i + 1]; break;
  171. case "DO": this.DO = Data[i + 1]; break;
  172. case "IT": this.IT = Data[i + 1]; break;
  173. case "KO": this.KO = Data[i + 1]; break;
  174. case "MN": this.MN = Data[i + 1]; break;
  175. case "OB": this.OB = Data[i + 1]; break;
  176. case "OW": this.OW = Data[i + 1]; break;
  177. case "TE": this.TE = Data[i + 1]; break;
  178. case "W": this.W = Data[i + 1]; break;
  179. case "WL": this.WL = Data[i + 1]; break;
  180. case "AB": this.AB = Data[i + 1]; break;
  181. case "AE": this.AE = Data[i + 1]; break;
  182. case "AW": this.AW = Data[i + 1]; break;
  183. case "PL": this.PL = Data[i + 1]; break;
  184. case "AR": this.AR = Data[i + 1]; break;
  185. case "C": this.C = Data[i + 1]; break;
  186. case "CR": this.CR = Data[i + 1]; break;
  187. case "DD": this.DD = Data[i + 1]; break;
  188. case "DM": this.DM = Data[i + 1]; break;
  189. case "FG": this.FG = Data[i + 1]; break;
  190. case "GB": this.GB = Data[i + 1]; break;
  191. case "GW": this.GW = Data[i + 1]; break;
  192. case "HO": this.HO = Data[i + 1]; break;
  193. case "LB": this.LB = Data[i + 1]; break;
  194. case "LN": this.LN = Data[i + 1]; break;
  195. case "MA": this.MA = Data[i + 1]; break;
  196. case "N": this.N = Data[i + 1]; break;
  197. case "PM": this.PM = Data[i + 1]; break;
  198. case "SL": this.SL = Data[i + 1]; break;
  199. case "SQ": this.SQ = Data[i + 1]; break;
  200. case "TR": this.TR = Data[i + 1]; break;
  201. case "UC": this.UC = Data[i + 1]; break;
  202. case "V": this.V = Data[i + 1]; break;
  203. case "VW": this.VW = Data[i + 1]; break;
  204. case "AP": this.AP = Data[i + 1]; break;
  205. case "CA": this.CA = Data[i + 1]; break;
  206. case "FF": this.FF = Data[i + 1]; break;
  207. case "GM": this.GM = Data[i + 1]; break;
  208. case "ST": this.ST = Data[i + 1]; break;
  209. case "SZ": this.SZ = Data[i + 1]; break;
  210. case "AN": this.AN = Data[i + 1]; break;
  211. case "BR": this.BR = Data[i + 1]; break;
  212. case "BT": this.BT = Data[i + 1]; break;
  213. case "CP": this.CP = Data[i + 1]; break;
  214. case "DT": this.DT = Data[i + 1]; break;
  215. case "EV": this.EV = Data[i + 1]; break;
  216. case "GC": this.GC = Data[i + 1]; break;
  217. case "GN": this.GN = Data[i + 1]; break;
  218. case "ON": this.ON = Data[i + 1]; break;
  219. case "OT": this.OT = Data[i + 1]; break;
  220. case "PB": this.PB = Data[i + 1]; break;
  221. case "PC": this.PC = Data[i + 1]; break;
  222. case "PW": this.PW = Data[i + 1]; break;
  223. case "RE": this.RE = Data[i + 1]; break;
  224. case "RO": this.RO = Data[i + 1]; break;
  225. case "RU": this.RU = Data[i + 1]; break;
  226. case "SO": this.SO = Data[i + 1]; break;
  227. case "TM": this.TM = Data[i + 1]; break;
  228. case "US": this.US = Data[i + 1]; break;
  229. case "WR": this.WR = Data[i + 1]; break;
  230. case "WT": this.WT = Data[i + 1]; break;
  231. case "TB": this.TB = Data[i + 1]; break;
  232. case "TW": this.TW = Data[i + 1]; break;
  233. case "HA": this.HA = Data[i + 1]; break;
  234. case "KM": this.KM = Data[i + 1]; break;
  235. default:
  236. // О??Б?? (н?йд?но н??у????ву???? ?вой??во узл?)
  237. break;
  238. };
  239. };
  240. };
  241. /****m* SmallGoEditor/TNode.SGF
  242. * NAME
  243. * SGF &#x2014; возв?????? SGF д?нно?о узл?
  244. * FUNCTION
  245. * Э?о? ???од фо????у?? ? возв?????? SGF д?нн??, дл? д?нно?о узл?.
  246. * INPUTS
  247. * -
  248. * RESULT
  249. * {String} &#x2014;&#x2014; SGF-д?нн?? ?оо?в????ву???? д?нно?у узлу
  250. * SOURCE
  251. */
  252. this.SGF = function()
  253. {
  254. var result = "";
  255. if (this.B != null) { result += "B"; for (var i = 0; i < this.B.length; i++) { result += "[" + this.B[i] + "]"; }; };
  256. if (this.BL != null) { result += "BL"; for (var i = 0; i < this.BL.length; i++) { result += "[" + this.BL[i] + "]"; }; };
  257. if (this.BL != null) { result += "BL"; for (var i = 0; i < this.BL.length; i++) { result += "[" + this.BL[i] + "]"; }; };
  258. if (this.BM != null) { result += "BM"; for (var i = 0; i < this.BM.length; i++) { result += "[" + this.BM[i] + "]"; }; };
  259. if (this.DO != null) { result += "DO"; for (var i = 0; i < this.DO.length; i++) { result += "[" + this.DO[i] + "]"; }; };
  260. if (this.IT != null) { result += "IT"; for (var i = 0; i < this.IT.length; i++) { result += "[" + this.IT[i] + "]"; }; };
  261. if (this.KO != null) { result += "KO"; for (var i = 0; i < this.KO.length; i++) { result += "[" + this.KO[i] + "]"; }; };
  262. if (this.MN != null) { result += "MN"; for (var i = 0; i < this.MN.length; i++) { result += "[" + this.MN[i] + "]"; }; };
  263. if (this.OB != null) { result += "OB"; for (var i = 0; i < this.OB.length; i++) { result += "[" + this.OB[i] + "]"; }; };
  264. if (this.OW != null) { result += "OW"; for (var i = 0; i < this.OW.length; i++) { result += "[" + this.OW[i] + "]"; }; };
  265. if (this.TE != null) { result += "TE"; for (var i = 0; i < this.TE.length; i++) { result += "[" + this.TE[i] + "]"; }; };
  266. if (this.W != null) { result += "W" ; for (var i = 0; i < this.W.length; i++) { result += "[" + this.W[i] + "]"; }; };
  267. if (this.WL != null) { result += "WL"; for (var i = 0; i < this.WL.length; i++) { result += "[" + this.WL[i] + "]"; }; };
  268. if (this.AB != null) { result += "AB"; for (var i = 0; i < this.AB.length; i++) { result += "[" + this.AB[i] + "]"; }; };
  269. if (this.AE != null) { result += "AE"; for (var i = 0; i < this.AE.length; i++) { result += "[" + this.AE[i] + "]"; }; };
  270. if (this.AW != null) { result += "AW"; for (var i = 0; i < this.AW.length; i++) { result += "[" + this.AW[i] + "]"; }; };
  271. if (this.PL != null) { result += "PL"; for (var i = 0; i < this.PL.length; i++) { result += "[" + this.PL[i] + "]"; }; };
  272. if (this.AR != null) { result += "AR"; for (var i = 0; i < this.AR.length; i++) { result += "[" + this.AR[i] + "]"; }; };
  273. if (this.C != null) { result += "C" ; for (var i = 0; i < this.C.length; i++) { result += "[" + this.C[i] + "]"; }; };
  274. if (this.CR != null) { result += "CR"; for (var i = 0; i < this.CR.length; i++) { result += "[" + this.CR[i] + "]"; }; };
  275. if (this.DD != null) { result += "DD"; for (var i = 0; i < this.DD.length; i++) { result += "[" + this.DD[i] + "]"; }; };
  276. if (this.DM != null) { result += "DM"; for (var i = 0; i < this.DM.length; i++) { result += "[" + this.DM[i] + "]"; }; };
  277. if (this.FG != null) { result += "FG"; for (var i = 0; i < this.FG.length; i++) { result += "[" + this.FG[i] + "]"; }; };
  278. if (this.GB != null) { result += "GB"; for (var i = 0; i < this.GB.length; i++) { result += "[" + this.GB[i] + "]"; }; };
  279. if (this.GW != null) { result += "GW"; for (var i = 0; i < this.GW.length; i++) { result += "[" + this.GW[i] + "]"; }; };
  280. if (this.HO != null) { result += "HO"; for (var i = 0; i < this.HO.length; i++) { result += "[" + this.HO[i] + "]"; }; };
  281. if (this.LB != null) { result += "LB"; for (var i = 0; i < this.LB.length; i++) { result += "[" + this.LB[i] + "]"; }; };
  282. if (this.LN != null) { result += "LN"; for (var i = 0; i < this.LN.length; i++) { result += "[" + this.LN[i] + "]"; }; };
  283. if (this.MA != null) { result += "MA"; for (var i = 0; i < this.MA.length; i++) { result += "[" + this.MA[i] + "]"; }; };
  284. if (this.N != null) { result += "N" ; for (var i = 0; i < this.N.length; i++) { result += "[" + this.N[i] + "]"; }; };
  285. if (this.PM != null) { result += "PM"; for (var i = 0; i < this.PM.length; i++) { result += "[" + this.PM[i] + "]"; }; };
  286. if (this.SL != null) { result += "SL"; for (var i = 0; i < this.SL.length; i++) { result += "[" + this.SL[i] + "]"; }; };
  287. if (this.SQ != null) { result += "SQ"; for (var i = 0; i < this.SQ.length; i++) { result += "[" + this.SQ[i] + "]"; }; };
  288. if (this.TR != null) { result += "TR"; for (var i = 0; i < this.TR.length; i++) { result += "[" + this.TR[i] + "]"; }; };
  289. if (this.UC != null) { result += "UC"; for (var i = 0; i < this.UC.length; i++) { result += "[" + this.UC[i] + "]"; }; };
  290. if (this.V != null) { result += "V" ; for (var i = 0; i < this.V.length; i++) { result += "[" + this.V[i] + "]"; }; };
  291. if (this.VW != null) { result += "VW"; for (var i = 0; i < this.VW.length; i++) { result += "[" + this.VW[i] + "]"; }; };
  292. if (this.AP != null) { result += "AP"; for (var i = 0; i < this.AP.length; i++) { result += "[" + this.AP[i] + "]"; }; };
  293. if (this.CA != null) { result += "CA"; for (var i = 0; i < this.CA.length; i++) { result += "[" + this.CA[i] + "]"; }; };
  294. if (this.FF != null) { result += "FF"; for (var i = 0; i < this.FF.length; i++) { result += "[" + this.FF[i] + "]"; }; };
  295. if (this.GM != null) { result += "GM"; for (var i = 0; i < this.GM.length; i++) { result += "[" + this.GM[i] + "]"; }; };
  296. if (this.ST != null) { result += "ST"; for (var i = 0; i < this.ST.length; i++) { result += "[" + this.ST[i] + "]"; }; };
  297. if (this.SZ != null) { result += "SZ"; for (var i = 0; i < this.SZ.length; i++) { result += "[" + this.SZ[i] + "]"; }; };
  298. if (this.AN != null) { result += "AN"; for (var i = 0; i < this.AN.length; i++) { result += "[" + this.AN[i] + "]"; }; };
  299. if (this.BR != null) { result += "BR"; for (var i = 0; i < this.BR.length; i++) { result += "[" + this.BR[i] + "]"; }; };
  300. if (this.BT != null) { result += "BT"; for (var i = 0; i < this.BT.length; i++) { result += "[" + this.BT[i] + "]"; }; };
  301. if (this.CP != null) { result += "CP"; for (var i = 0; i < this.CP.length; i++) { result += "[" + this.CP[i] + "]"; }; };
  302. if (this.DT != null) { result += "DT"; for (var i = 0; i < this.DT.length; i++) { result += "[" + this.DT[i] + "]"; }; };
  303. if (this.EV != null) { result += "EV"; for (var i = 0; i < this.EV.length; i++) { result += "[" + this.EV[i] + "]"; }; };
  304. if (this.GC != null) { result += "GC"; for (var i = 0; i < this.GC.length; i++) { result += "[" + this.GC[i] + "]"; }; };
  305. if (this.GN != null) { result += "GN"; for (var i = 0; i < this.GN.length; i++) { result += "[" + this.GN[i] + "]"; }; };
  306. if (this.ON != null) { result += "ON"; for (var i = 0; i < this.ON.length; i++) { result += "[" + this.ON[i] + "]"; }; };
  307. if (this.OT != null) { result += "OT"; for (var i = 0; i < this.OT.length; i++) { result += "[" + this.OT[i] + "]"; }; };
  308. if (this.PB != null) { result += "PB"; for (var i = 0; i < this.PB.length; i++) { result += "[" + this.PB[i] + "]"; }; };
  309. if (this.PC != null) { result += "PC"; for (var i = 0; i < this.PC.length; i++) { result += "[" + this.PC[i] + "]"; }; };
  310. if (this.PW != null) { result += "PW"; for (var i = 0; i < this.PW.length; i++) { result += "[" + this.PW[i] + "]"; }; };
  311. if (this.RE != null) { result += "RE"; for (var i = 0; i < this.RE.length; i++) { result += "[" + this.RE[i] + "]"; }; };
  312. if (this.RO != null) { result += "RO"; for (var i = 0; i < this.RO.length; i++) { result += "[" + this.RO[i] + "]"; }; };
  313. if (this.RU != null) { result += "RU"; for (var i = 0; i < this.RU.length; i++) { result += "[" + this.RU[i] + "]"; }; };
  314. if (this.SO != null) { result += "SO"; for (var i = 0; i < this.SO.length; i++) { result += "[" + this.SO[i] + "]"; }; };
  315. if (this.TM != null) { result += "TM"; for (var i = 0; i < this.TM.length; i++) { result += "[" + this.TM[i] + "]"; }; };
  316. if (this.US != null) { result += "US"; for (var i = 0; i < this.US.length; i++) { result += "[" + this.US[i] + "]"; }; };
  317. if (this.WR != null) { result += "WR"; for (var i = 0; i < this.WR.length; i++) { result += "[" + this.WR[i] + "]"; }; };
  318. if (this.WT != null) { result += "WT"; for (var i = 0; i < this.WT.length; i++) { result += "[" + this.WT[i] + "]"; }; };
  319. if (this.TB != null) { result += "TB"; for (var i = 0; i < this.TB.length; i++) { result += "[" + this.TB[i] + "]"; }; };
  320. if (this.TW != null) { result += "TW"; for (var i = 0; i < this.TW.length; i++) { result += "[" + this.TW[i] + "]"; }; };
  321. if (this.HA != null) { result += "HA"; for (var i = 0; i < this.HA.length; i++) { result += "[" + this.HA[i] + "]"; }; };
  322. if (this.KM != null) { result += "KM"; for (var i = 0; i < this.KM.length; i++) { result += "[" + this.KM[i] + "]"; }; };
  323. return result;
  324. };
  325. /*********/
  326. };