Pacman.3dIcons.pattern.metamodel 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301
  1. {
  2. "types": {
  3. "__pPacmanIcon": [
  4. {
  5. "name": "typename",
  6. "type": "string",
  7. "default": "PacmanIcon"
  8. },
  9. {
  10. "name": "position",
  11. "type": "list<double>",
  12. "default": [
  13. 108,
  14. 180
  15. ]
  16. },
  17. {
  18. "name": "orientation",
  19. "type": "double",
  20. "default": 0
  21. },
  22. {
  23. "name": "scale",
  24. "type": "list<double>",
  25. "default": [
  26. 1,
  27. 1
  28. ]
  29. },
  30. {
  31. "name": "mapper",
  32. "type": "code",
  33. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  34. },
  35. {
  36. "name": "parser",
  37. "type": "code",
  38. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  39. },
  40. {
  41. "name": "$contents",
  42. "type": "map<string,*>",
  43. "default": {
  44. "nodes": {
  45. "2": {
  46. "src": {
  47. "type": "string",
  48. "value": "http://png-1.findicons.com/files/icons/75/i_like_buttons_3a/512/cute_ball_games.png"
  49. },
  50. "width": {
  51. "type": "double",
  52. "value": 48
  53. },
  54. "height": {
  55. "type": "double",
  56. "value": 48
  57. },
  58. "style": {
  59. "type": "map<string,string>",
  60. "value": {
  61. "stroke": "#000000",
  62. "stroke-dasharray": "",
  63. "fill": "#ffffff",
  64. "opacity": 1,
  65. "font-size": "20px",
  66. "stroke-width": 1,
  67. "arrow-start": "none",
  68. "arrow-end": "none"
  69. }
  70. },
  71. "mapper": {
  72. "type": "code",
  73. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  74. },
  75. "parser": {
  76. "type": "code",
  77. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  78. },
  79. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  80. "position": {
  81. "type": "list<double>",
  82. "value": [
  83. 2,
  84. 3
  85. ]
  86. },
  87. "orientation": {
  88. "type": "double",
  89. "value": 0
  90. },
  91. "scale": {
  92. "type": "list<double>",
  93. "value": [
  94. 1,
  95. 1
  96. ]
  97. }
  98. },
  99. "__pLabelText": {
  100. "position": {
  101. "type": "list<double>",
  102. "value": [
  103. 0,
  104. 0
  105. ]
  106. },
  107. "orientation": {
  108. "type": "double",
  109. "value": 0
  110. },
  111. "scale": {
  112. "type": "list<double>",
  113. "value": [
  114. 1,
  115. 1
  116. ]
  117. },
  118. "textContent": {
  119. "type": "string",
  120. "value": "#"
  121. },
  122. "style": {
  123. "type": "map<string,string>",
  124. "value": {
  125. "stroke": "#6000ff",
  126. "fill": "#6000ff",
  127. "font-size": "15px",
  128. "opacity": "1"
  129. }
  130. },
  131. "mapper": {
  132. "type": "code",
  133. "value": "({'textContent':getAttr('__pLabel')})"
  134. },
  135. "parser": {
  136. "type": "code",
  137. "value": "({'__pLabel':getAttr('textContent')})"
  138. },
  139. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  140. }
  141. },
  142. "edges": []
  143. }
  144. },
  145. {
  146. "name": "$asuri",
  147. "type": "string",
  148. "default": "-1"
  149. }
  150. ],
  151. "__pGhostIcon": [
  152. {
  153. "name": "typename",
  154. "type": "string",
  155. "default": "GhostIcon"
  156. },
  157. {
  158. "name": "position",
  159. "type": "list<double>",
  160. "default": [
  161. 408,
  162. 212
  163. ]
  164. },
  165. {
  166. "name": "orientation",
  167. "type": "double",
  168. "default": 0
  169. },
  170. {
  171. "name": "scale",
  172. "type": "list<double>",
  173. "default": [
  174. 1,
  175. 1
  176. ]
  177. },
  178. {
  179. "name": "mapper",
  180. "type": "code",
  181. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  182. },
  183. {
  184. "name": "parser",
  185. "type": "code",
  186. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  187. },
  188. {
  189. "name": "$contents",
  190. "type": "map<string,*>",
  191. "default": {
  192. "nodes": {
  193. "40": {
  194. "src": {
  195. "type": "string",
  196. "value": "http://www.cliparts101.com/files/826/A0963C24B269D40299C2A21CC837D66F/Game_baddie_Devil.png"
  197. },
  198. "width": {
  199. "type": "double",
  200. "value": 48
  201. },
  202. "height": {
  203. "type": "double",
  204. "value": 48
  205. },
  206. "style": {
  207. "type": "map<string,string>",
  208. "value": {
  209. "stroke": "#000000",
  210. "stroke-dasharray": "",
  211. "fill": "#ffffff",
  212. "fill-opacity": 0.75,
  213. "font-size": "20px",
  214. "stroke-width": 1,
  215. "arrow-start": "none",
  216. "arrow-end": "none"
  217. }
  218. },
  219. "mapper": {
  220. "type": "code",
  221. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  222. },
  223. "parser": {
  224. "type": "code",
  225. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  226. },
  227. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  228. "position": {
  229. "type": "list<double>",
  230. "value": [
  231. 1,
  232. 1
  233. ]
  234. },
  235. "orientation": {
  236. "type": "double",
  237. "value": 0
  238. },
  239. "scale": {
  240. "type": "list<double>",
  241. "value": [
  242. 1,
  243. 1
  244. ]
  245. }
  246. },
  247. "__pLabelText": {
  248. "position": {
  249. "type": "list<double>",
  250. "value": [
  251. 0,
  252. 0
  253. ]
  254. },
  255. "orientation": {
  256. "type": "double",
  257. "value": 0
  258. },
  259. "scale": {
  260. "type": "list<double>",
  261. "value": [
  262. 1,
  263. 1
  264. ]
  265. },
  266. "textContent": {
  267. "type": "string",
  268. "value": "#"
  269. },
  270. "style": {
  271. "type": "map<string,string>",
  272. "value": {
  273. "stroke": "#6000ff",
  274. "fill": "#6000ff",
  275. "font-size": "15px",
  276. "opacity": "1"
  277. }
  278. },
  279. "mapper": {
  280. "type": "code",
  281. "value": "({'textContent':getAttr('__pLabel')})"
  282. },
  283. "parser": {
  284. "type": "code",
  285. "value": "({'__pLabel':getAttr('textContent')})"
  286. },
  287. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  288. }
  289. },
  290. "edges": []
  291. }
  292. },
  293. {
  294. "name": "$asuri",
  295. "type": "string",
  296. "default": "-1"
  297. }
  298. ],
  299. "__pGridNodeIcon": [
  300. {
  301. "name": "typename",
  302. "type": "string",
  303. "default": "GridNodeIcon"
  304. },
  305. {
  306. "name": "position",
  307. "type": "list<double>",
  308. "default": [
  309. 683,
  310. 235
  311. ]
  312. },
  313. {
  314. "name": "orientation",
  315. "type": "double",
  316. "default": 0
  317. },
  318. {
  319. "name": "scale",
  320. "type": "list<double>",
  321. "default": [
  322. 1,
  323. 1
  324. ]
  325. },
  326. {
  327. "name": "mapper",
  328. "type": "code",
  329. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  330. },
  331. {
  332. "name": "parser",
  333. "type": "code",
  334. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  335. },
  336. {
  337. "name": "$contents",
  338. "type": "map<string,*>",
  339. "default": {
  340. "nodes": {
  341. "35": {
  342. "width": {
  343. "type": "double",
  344. "value": 100
  345. },
  346. "height": {
  347. "type": "double",
  348. "value": 100
  349. },
  350. "cornerRadius": {
  351. "type": "double",
  352. "value": 0
  353. },
  354. "style": {
  355. "type": "map<string,string>",
  356. "value": {
  357. "stroke": "#000000",
  358. "stroke-dasharray": "",
  359. "fill": "gray",
  360. "fill-opacity": 0.75,
  361. "font-size": "20px",
  362. "stroke-width": 1,
  363. "arrow-start": "none",
  364. "arrow-end": "none"
  365. }
  366. },
  367. "mapper": {
  368. "type": "code",
  369. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  370. },
  371. "parser": {
  372. "type": "code",
  373. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  374. },
  375. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  376. "position": {
  377. "type": "list<double>",
  378. "value": [
  379. 3,
  380. 1
  381. ]
  382. },
  383. "orientation": {
  384. "type": "double",
  385. "value": 0
  386. },
  387. "scale": {
  388. "type": "list<double>",
  389. "value": [
  390. 1,
  391. 1
  392. ]
  393. }
  394. },
  395. "46": {
  396. "width": {
  397. "type": "double",
  398. "value": 30
  399. },
  400. "height": {
  401. "type": "double",
  402. "value": 30
  403. },
  404. "cornerRadius": {
  405. "type": "double",
  406. "value": 0
  407. },
  408. "style": {
  409. "type": "map<string,string>",
  410. "value": {
  411. "stroke": "#000000",
  412. "stroke-dasharray": "",
  413. "fill": "#000000",
  414. "fill-opacity": 0.75,
  415. "font-size": "20px",
  416. "stroke-width": 1,
  417. "arrow-start": "none",
  418. "arrow-end": "none"
  419. }
  420. },
  421. "mapper": {
  422. "type": "code",
  423. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  424. },
  425. "parser": {
  426. "type": "code",
  427. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  428. },
  429. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  430. "position": {
  431. "type": "list<double>",
  432. "value": [
  433. 4,
  434. 70
  435. ]
  436. },
  437. "orientation": {
  438. "type": "double",
  439. "value": 0
  440. },
  441. "scale": {
  442. "type": "list<double>",
  443. "value": [
  444. 1,
  445. 1
  446. ]
  447. }
  448. },
  449. "47": {
  450. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  451. "position": {
  452. "type": "list<double>",
  453. "value": [
  454. 11.5,
  455. 43.5
  456. ]
  457. },
  458. "orientation": {
  459. "type": "double",
  460. "value": 0
  461. },
  462. "scale": {
  463. "type": "list<double>",
  464. "value": [
  465. 1,
  466. 1
  467. ]
  468. },
  469. "link-style": {
  470. "type": "map<string,string>",
  471. "value": {
  472. "stroke": "#00ffff",
  473. "stroke-dasharray": "",
  474. "stroke-opacity": 0.1,
  475. "stroke-width": 1
  476. }
  477. }
  478. },
  479. "48": {
  480. "width": {
  481. "type": "double",
  482. "value": 30
  483. },
  484. "height": {
  485. "type": "double",
  486. "value": 30
  487. },
  488. "cornerRadius": {
  489. "type": "double",
  490. "value": 0
  491. },
  492. "style": {
  493. "type": "map<string,string>",
  494. "value": {
  495. "stroke": "#000000",
  496. "stroke-dasharray": "",
  497. "fill": "#000000",
  498. "fill-opacity": 0.75,
  499. "font-size": "20px",
  500. "stroke-width": 1,
  501. "arrow-start": "none",
  502. "arrow-end": "none"
  503. }
  504. },
  505. "mapper": {
  506. "type": "code",
  507. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  508. },
  509. "parser": {
  510. "type": "code",
  511. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  512. },
  513. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  514. "position": {
  515. "type": "list<double>",
  516. "value": [
  517. 72,
  518. 70
  519. ]
  520. },
  521. "orientation": {
  522. "type": "double",
  523. "value": 0
  524. },
  525. "scale": {
  526. "type": "list<double>",
  527. "value": [
  528. 1,
  529. 1
  530. ]
  531. }
  532. },
  533. "49": {
  534. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  535. "position": {
  536. "type": "list<double>",
  537. "value": [
  538. 11.10434519602211,
  539. 10.610866770773413
  540. ]
  541. },
  542. "orientation": {
  543. "type": "double",
  544. "value": 0
  545. },
  546. "scale": {
  547. "type": "list<double>",
  548. "value": [
  549. 1,
  550. 1
  551. ]
  552. },
  553. "link-style": {
  554. "type": "map<string,string>",
  555. "value": {
  556. "stroke": "#00ffff",
  557. "stroke-dasharray": "",
  558. "stroke-opacity": 0.1,
  559. "stroke-width": 1
  560. }
  561. }
  562. },
  563. "50": {
  564. "width": {
  565. "type": "double",
  566. "value": 30
  567. },
  568. "height": {
  569. "type": "double",
  570. "value": 30
  571. },
  572. "cornerRadius": {
  573. "type": "double",
  574. "value": 0
  575. },
  576. "style": {
  577. "type": "map<string,string>",
  578. "value": {
  579. "stroke": "#000000",
  580. "stroke-dasharray": "",
  581. "fill": "#000000",
  582. "fill-opacity": 0.75,
  583. "font-size": "20px",
  584. "stroke-width": 1,
  585. "arrow-start": "none",
  586. "arrow-end": "none"
  587. }
  588. },
  589. "mapper": {
  590. "type": "code",
  591. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  592. },
  593. "parser": {
  594. "type": "code",
  595. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  596. },
  597. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  598. "position": {
  599. "type": "list<double>",
  600. "value": [
  601. 72,
  602. 3
  603. ]
  604. },
  605. "orientation": {
  606. "type": "double",
  607. "value": 0
  608. },
  609. "scale": {
  610. "type": "list<double>",
  611. "value": [
  612. 1,
  613. 1
  614. ]
  615. }
  616. },
  617. "51": {
  618. "width": {
  619. "type": "double",
  620. "value": 30
  621. },
  622. "height": {
  623. "type": "double",
  624. "value": 30
  625. },
  626. "cornerRadius": {
  627. "type": "double",
  628. "value": 0
  629. },
  630. "style": {
  631. "type": "map<string,string>",
  632. "value": {
  633. "stroke": "#000000",
  634. "stroke-dasharray": "",
  635. "fill": "#000000",
  636. "fill-opacity": 0.75,
  637. "font-size": "20px",
  638. "stroke-width": 1,
  639. "arrow-start": "none",
  640. "arrow-end": "none"
  641. }
  642. },
  643. "mapper": {
  644. "type": "code",
  645. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  646. },
  647. "parser": {
  648. "type": "code",
  649. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  650. },
  651. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  652. "position": {
  653. "type": "list<double>",
  654. "value": [
  655. 4,
  656. 3
  657. ]
  658. },
  659. "orientation": {
  660. "type": "double",
  661. "value": 0
  662. },
  663. "scale": {
  664. "type": "list<double>",
  665. "value": [
  666. 1,
  667. 1
  668. ]
  669. }
  670. },
  671. "53": {
  672. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  673. "position": {
  674. "type": "list<double>",
  675. "value": [
  676. 45,
  677. 10
  678. ]
  679. },
  680. "orientation": {
  681. "type": "double",
  682. "value": 0
  683. },
  684. "scale": {
  685. "type": "list<double>",
  686. "value": [
  687. 1,
  688. 1
  689. ]
  690. },
  691. "link-style": {
  692. "type": "map<string,string>",
  693. "value": {
  694. "stroke": "#00ffff",
  695. "stroke-dasharray": "",
  696. "stroke-opacity": 0.1,
  697. "stroke-width": 1
  698. }
  699. }
  700. },
  701. "54": {
  702. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  703. "position": {
  704. "type": "list<double>",
  705. "value": [
  706. 11.10434519602211,
  707. 10.610866770773413
  708. ]
  709. },
  710. "orientation": {
  711. "type": "double",
  712. "value": 0
  713. },
  714. "scale": {
  715. "type": "list<double>",
  716. "value": [
  717. 1,
  718. 1
  719. ]
  720. },
  721. "link-style": {
  722. "type": "map<string,string>",
  723. "value": {
  724. "stroke": "#00ffff",
  725. "stroke-dasharray": "",
  726. "stroke-opacity": 0.1,
  727. "stroke-width": 1
  728. }
  729. }
  730. },
  731. "__pLabelText": {
  732. "position": {
  733. "type": "list<double>",
  734. "value": [
  735. 0,
  736. 0
  737. ]
  738. },
  739. "orientation": {
  740. "type": "double",
  741. "value": 0
  742. },
  743. "scale": {
  744. "type": "list<double>",
  745. "value": [
  746. 1,
  747. 1
  748. ]
  749. },
  750. "textContent": {
  751. "type": "string",
  752. "value": "#"
  753. },
  754. "style": {
  755. "type": "map<string,string>",
  756. "value": {
  757. "stroke": "#6000ff",
  758. "fill": "#6000ff",
  759. "font-size": "15px",
  760. "opacity": "1"
  761. }
  762. },
  763. "mapper": {
  764. "type": "code",
  765. "value": "({'textContent':getAttr('__pLabel')})"
  766. },
  767. "parser": {
  768. "type": "code",
  769. "value": "({'__pLabel':getAttr('textContent')})"
  770. },
  771. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  772. }
  773. },
  774. "edges": [
  775. {
  776. "src": "35",
  777. "dest": "47"
  778. },
  779. {
  780. "src": "47",
  781. "dest": "46"
  782. },
  783. {
  784. "src": "35",
  785. "dest": "49"
  786. },
  787. {
  788. "src": "49",
  789. "dest": "48"
  790. },
  791. {
  792. "src": "35",
  793. "dest": "53"
  794. },
  795. {
  796. "src": "53",
  797. "dest": "50"
  798. },
  799. {
  800. "src": "35",
  801. "dest": "54"
  802. },
  803. {
  804. "src": "54",
  805. "dest": "51"
  806. }
  807. ]
  808. }
  809. },
  810. {
  811. "name": "$asuri",
  812. "type": "string",
  813. "default": "-1"
  814. }
  815. ],
  816. "__pFoodIcon": [
  817. {
  818. "name": "typename",
  819. "type": "string",
  820. "default": "FoodIcon"
  821. },
  822. {
  823. "name": "position",
  824. "type": "list<double>",
  825. "default": [
  826. 947,
  827. 232
  828. ]
  829. },
  830. {
  831. "name": "orientation",
  832. "type": "double",
  833. "default": 0
  834. },
  835. {
  836. "name": "scale",
  837. "type": "list<double>",
  838. "default": [
  839. 1,
  840. 1
  841. ]
  842. },
  843. {
  844. "name": "mapper",
  845. "type": "code",
  846. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  847. },
  848. {
  849. "name": "parser",
  850. "type": "code",
  851. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  852. },
  853. {
  854. "name": "$contents",
  855. "type": "map<string,*>",
  856. "default": {
  857. "nodes": {
  858. "42": {
  859. "src": {
  860. "type": "string",
  861. "value": "http://www.psdgraphics.com/wp-content/uploads/2009/06/glossy-ball-icon.jpg"
  862. },
  863. "width": {
  864. "type": "double",
  865. "value": 20
  866. },
  867. "height": {
  868. "type": "double",
  869. "value": 15
  870. },
  871. "style": {
  872. "type": "map<string,string>",
  873. "value": {
  874. "stroke": "#000000",
  875. "stroke-dasharray": "",
  876. "fill": "#ffffff",
  877. "fill-opacity": 0.75,
  878. "font-size": "20px",
  879. "stroke-width": 1,
  880. "arrow-start": "none",
  881. "arrow-end": "none"
  882. }
  883. },
  884. "mapper": {
  885. "type": "code",
  886. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  887. },
  888. "parser": {
  889. "type": "code",
  890. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  891. },
  892. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  893. "position": {
  894. "type": "list<double>",
  895. "value": [
  896. 1,
  897. 2
  898. ]
  899. },
  900. "orientation": {
  901. "type": "double",
  902. "value": 0
  903. },
  904. "scale": {
  905. "type": "list<double>",
  906. "value": [
  907. 1,
  908. 1
  909. ]
  910. }
  911. },
  912. "__pLabelText": {
  913. "position": {
  914. "type": "list<double>",
  915. "value": [
  916. 0,
  917. 0
  918. ]
  919. },
  920. "orientation": {
  921. "type": "double",
  922. "value": 0
  923. },
  924. "scale": {
  925. "type": "list<double>",
  926. "value": [
  927. 1,
  928. 1
  929. ]
  930. },
  931. "textContent": {
  932. "type": "string",
  933. "value": "#"
  934. },
  935. "style": {
  936. "type": "map<string,string>",
  937. "value": {
  938. "stroke": "#6000ff",
  939. "fill": "#6000ff",
  940. "font-size": "15px",
  941. "opacity": "1"
  942. }
  943. },
  944. "mapper": {
  945. "type": "code",
  946. "value": "({'textContent':getAttr('__pLabel')})"
  947. },
  948. "parser": {
  949. "type": "code",
  950. "value": "({'__pLabel':getAttr('textContent')})"
  951. },
  952. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  953. }
  954. },
  955. "edges": []
  956. }
  957. },
  958. {
  959. "name": "$asuri",
  960. "type": "string",
  961. "default": "-1"
  962. }
  963. ],
  964. "__pScoreboardIcon": [
  965. {
  966. "name": "typename",
  967. "type": "string",
  968. "default": "ScoreboardIcon"
  969. },
  970. {
  971. "name": "position",
  972. "type": "list<double>",
  973. "default": [
  974. 1243,
  975. 311
  976. ]
  977. },
  978. {
  979. "name": "orientation",
  980. "type": "double",
  981. "default": 0
  982. },
  983. {
  984. "name": "scale",
  985. "type": "list<double>",
  986. "default": [
  987. 1,
  988. 1
  989. ]
  990. },
  991. {
  992. "name": "mapper",
  993. "type": "code",
  994. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  995. },
  996. {
  997. "name": "parser",
  998. "type": "code",
  999. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1000. },
  1001. {
  1002. "name": "$contents",
  1003. "type": "map<string,*>",
  1004. "default": {
  1005. "nodes": {
  1006. "23": {
  1007. "width": {
  1008. "type": "double",
  1009. "value": 100
  1010. },
  1011. "height": {
  1012. "type": "double",
  1013. "value": 50
  1014. },
  1015. "cornerRadius": {
  1016. "type": "double",
  1017. "value": 5
  1018. },
  1019. "style": {
  1020. "type": "map<string,string>",
  1021. "value": {
  1022. "stroke": "#000000",
  1023. "stroke-dasharray": "",
  1024. "fill": "#ffffff",
  1025. "fill-opacity": 0.75,
  1026. "font-size": "20px",
  1027. "stroke-width": 1,
  1028. "arrow-start": "none",
  1029. "arrow-end": "none"
  1030. }
  1031. },
  1032. "mapper": {
  1033. "type": "code",
  1034. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1035. },
  1036. "parser": {
  1037. "type": "code",
  1038. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1039. },
  1040. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1041. "position": {
  1042. "type": "list<double>",
  1043. "value": [
  1044. 5,
  1045. 3
  1046. ]
  1047. },
  1048. "orientation": {
  1049. "type": "double",
  1050. "value": 0
  1051. },
  1052. "scale": {
  1053. "type": "list<double>",
  1054. "value": [
  1055. 1,
  1056. 1
  1057. ]
  1058. }
  1059. },
  1060. "24": {
  1061. "textContent": {
  1062. "type": "string",
  1063. "value": "Score"
  1064. },
  1065. "style": {
  1066. "type": "map<string,string>",
  1067. "value": {
  1068. "font-family": "Times",
  1069. "stroke": "#000000",
  1070. "stroke-dasharray": "",
  1071. "fill": "#ffffff",
  1072. "fill-opacity": 0.75,
  1073. "font-size": "20px",
  1074. "stroke-width": 1,
  1075. "arrow-start": "none",
  1076. "arrow-end": "none"
  1077. }
  1078. },
  1079. "mapper": {
  1080. "type": "code",
  1081. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1082. },
  1083. "parser": {
  1084. "type": "code",
  1085. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1086. },
  1087. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1088. "position": {
  1089. "type": "list<double>",
  1090. "value": [
  1091. 34,
  1092. 19
  1093. ]
  1094. },
  1095. "orientation": {
  1096. "type": "double",
  1097. "value": 0
  1098. },
  1099. "scale": {
  1100. "type": "list<double>",
  1101. "value": [
  1102. 1,
  1103. 1
  1104. ]
  1105. }
  1106. },
  1107. "25": {
  1108. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1109. "position": {
  1110. "type": "list<double>",
  1111. "value": [
  1112. 26.130247748546935,
  1113. 16.577124547887706
  1114. ]
  1115. },
  1116. "orientation": {
  1117. "type": "double",
  1118. "value": 0
  1119. },
  1120. "scale": {
  1121. "type": "list<double>",
  1122. "value": [
  1123. 1,
  1124. 1
  1125. ]
  1126. },
  1127. "link-style": {
  1128. "type": "map<string,string>",
  1129. "value": {
  1130. "stroke": "#00ffff",
  1131. "stroke-dasharray": "",
  1132. "stroke-opacity": 0.1,
  1133. "arrow-start": "none",
  1134. "arrow-end": "classic-wide-long"
  1135. }
  1136. }
  1137. },
  1138. "__pLabelText": {
  1139. "position": {
  1140. "type": "list<double>",
  1141. "value": [
  1142. 0,
  1143. 0
  1144. ]
  1145. },
  1146. "orientation": {
  1147. "type": "double",
  1148. "value": 0
  1149. },
  1150. "scale": {
  1151. "type": "list<double>",
  1152. "value": [
  1153. 1,
  1154. 1
  1155. ]
  1156. },
  1157. "textContent": {
  1158. "type": "string",
  1159. "value": "#"
  1160. },
  1161. "style": {
  1162. "type": "map<string,string>",
  1163. "value": {
  1164. "stroke": "#6000ff",
  1165. "fill": "#6000ff",
  1166. "font-size": "15px",
  1167. "opacity": "1"
  1168. }
  1169. },
  1170. "mapper": {
  1171. "type": "code",
  1172. "value": "({'textContent':getAttr('__pLabel')})"
  1173. },
  1174. "parser": {
  1175. "type": "code",
  1176. "value": "({'__pLabel':getAttr('textContent')})"
  1177. },
  1178. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1179. }
  1180. },
  1181. "edges": [
  1182. {
  1183. "src": "23",
  1184. "dest": "25"
  1185. },
  1186. {
  1187. "src": "25",
  1188. "dest": "24"
  1189. }
  1190. ]
  1191. }
  1192. },
  1193. {
  1194. "name": "$asuri",
  1195. "type": "string",
  1196. "default": "-1"
  1197. }
  1198. ],
  1199. "__pPoGLink": [
  1200. {
  1201. "name": "link-style",
  1202. "type": "map<string,string>",
  1203. "default": {
  1204. "stroke": "#000000",
  1205. "stroke-dasharray": "",
  1206. "stroke-opacity": 1,
  1207. "stroke-width": 0
  1208. }
  1209. },
  1210. {
  1211. "name": "arrowHead",
  1212. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1213. "default": "custom"
  1214. },
  1215. {
  1216. "name": "arrowTail",
  1217. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1218. "default": "arrow-black"
  1219. },
  1220. {
  1221. "name": "typename",
  1222. "type": "string",
  1223. "default": "PoGLink"
  1224. },
  1225. {
  1226. "name": "position",
  1227. "type": "list<double>",
  1228. "default": [
  1229. 52,
  1230. 535
  1231. ]
  1232. },
  1233. {
  1234. "name": "orientation",
  1235. "type": "double",
  1236. "default": 0
  1237. },
  1238. {
  1239. "name": "scale",
  1240. "type": "list<double>",
  1241. "default": [
  1242. 1,
  1243. 1
  1244. ]
  1245. },
  1246. {
  1247. "name": "mapper",
  1248. "type": "code",
  1249. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1250. },
  1251. {
  1252. "name": "parser",
  1253. "type": "code",
  1254. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1255. },
  1256. {
  1257. "name": "$contents",
  1258. "type": "map<string,*>",
  1259. "default": {
  1260. "nodes": {
  1261. "__pLabelText": {
  1262. "position": {
  1263. "type": "list<double>",
  1264. "value": [
  1265. 0,
  1266. 0
  1267. ]
  1268. },
  1269. "orientation": {
  1270. "type": "double",
  1271. "value": 0
  1272. },
  1273. "scale": {
  1274. "type": "list<double>",
  1275. "value": [
  1276. 1,
  1277. 1
  1278. ]
  1279. },
  1280. "textContent": {
  1281. "type": "string",
  1282. "value": "#"
  1283. },
  1284. "style": {
  1285. "type": "map<string,string>",
  1286. "value": {
  1287. "stroke": "#6000ff",
  1288. "fill": "#6000ff",
  1289. "font-size": "15px",
  1290. "opacity": "1"
  1291. }
  1292. },
  1293. "mapper": {
  1294. "type": "code",
  1295. "value": "({'textContent':getAttr('__pLabel')})"
  1296. },
  1297. "parser": {
  1298. "type": "code",
  1299. "value": "({'__pLabel':getAttr('textContent')})"
  1300. },
  1301. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1302. }
  1303. },
  1304. "edges": []
  1305. }
  1306. },
  1307. {
  1308. "name": "$asuri",
  1309. "type": "string",
  1310. "default": "-1"
  1311. },
  1312. {
  1313. "name": "$segments",
  1314. "type": "map<string,list<string>>",
  1315. "default": {}
  1316. }
  1317. ],
  1318. "__pFoGLink": [
  1319. {
  1320. "name": "link-style",
  1321. "type": "map<string,string>",
  1322. "default": {
  1323. "stroke": "#000000",
  1324. "stroke-dasharray": "",
  1325. "stroke-opacity": 1,
  1326. "stroke-width": 0
  1327. }
  1328. },
  1329. {
  1330. "name": "arrowHead",
  1331. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1332. "default": "custom"
  1333. },
  1334. {
  1335. "name": "arrowTail",
  1336. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1337. "default": "arrow-black"
  1338. },
  1339. {
  1340. "name": "typename",
  1341. "type": "string",
  1342. "default": "FoGLink"
  1343. },
  1344. {
  1345. "name": "position",
  1346. "type": "list<double>",
  1347. "default": [
  1348. 324,
  1349. 592
  1350. ]
  1351. },
  1352. {
  1353. "name": "orientation",
  1354. "type": "double",
  1355. "default": 0
  1356. },
  1357. {
  1358. "name": "scale",
  1359. "type": "list<double>",
  1360. "default": [
  1361. 1,
  1362. 1
  1363. ]
  1364. },
  1365. {
  1366. "name": "mapper",
  1367. "type": "code",
  1368. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1369. },
  1370. {
  1371. "name": "parser",
  1372. "type": "code",
  1373. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1374. },
  1375. {
  1376. "name": "$contents",
  1377. "type": "map<string,*>",
  1378. "default": {
  1379. "nodes": {
  1380. "__pLabelText": {
  1381. "position": {
  1382. "type": "list<double>",
  1383. "value": [
  1384. 0,
  1385. 0
  1386. ]
  1387. },
  1388. "orientation": {
  1389. "type": "double",
  1390. "value": 0
  1391. },
  1392. "scale": {
  1393. "type": "list<double>",
  1394. "value": [
  1395. 1,
  1396. 1
  1397. ]
  1398. },
  1399. "textContent": {
  1400. "type": "string",
  1401. "value": "#"
  1402. },
  1403. "style": {
  1404. "type": "map<string,string>",
  1405. "value": {
  1406. "stroke": "#6000ff",
  1407. "fill": "#6000ff",
  1408. "font-size": "15px",
  1409. "opacity": "1"
  1410. }
  1411. },
  1412. "mapper": {
  1413. "type": "code",
  1414. "value": "({'textContent':getAttr('__pLabel')})"
  1415. },
  1416. "parser": {
  1417. "type": "code",
  1418. "value": "({'__pLabel':getAttr('textContent')})"
  1419. },
  1420. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1421. }
  1422. },
  1423. "edges": []
  1424. }
  1425. },
  1426. {
  1427. "name": "$asuri",
  1428. "type": "string",
  1429. "default": "-1"
  1430. },
  1431. {
  1432. "name": "$segments",
  1433. "type": "map<string,list<string>>",
  1434. "default": {}
  1435. }
  1436. ],
  1437. "__pGoGLink": [
  1438. {
  1439. "name": "link-style",
  1440. "type": "map<string,string>",
  1441. "default": {
  1442. "stroke": "#000000",
  1443. "stroke-dasharray": "",
  1444. "stroke-opacity": 1,
  1445. "stroke-width": 0
  1446. }
  1447. },
  1448. {
  1449. "name": "arrowHead",
  1450. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1451. "default": "custom"
  1452. },
  1453. {
  1454. "name": "arrowTail",
  1455. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1456. "default": "arrow-black"
  1457. },
  1458. {
  1459. "name": "typename",
  1460. "type": "string",
  1461. "default": "GoGLink"
  1462. },
  1463. {
  1464. "name": "position",
  1465. "type": "list<double>",
  1466. "default": [
  1467. 589,
  1468. 664
  1469. ]
  1470. },
  1471. {
  1472. "name": "orientation",
  1473. "type": "double",
  1474. "default": 0
  1475. },
  1476. {
  1477. "name": "scale",
  1478. "type": "list<double>",
  1479. "default": [
  1480. 1,
  1481. 1
  1482. ]
  1483. },
  1484. {
  1485. "name": "mapper",
  1486. "type": "code",
  1487. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1488. },
  1489. {
  1490. "name": "parser",
  1491. "type": "code",
  1492. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1493. },
  1494. {
  1495. "name": "$contents",
  1496. "type": "map<string,*>",
  1497. "default": {
  1498. "nodes": {
  1499. "__pLabelText": {
  1500. "position": {
  1501. "type": "list<double>",
  1502. "value": [
  1503. 0,
  1504. 0
  1505. ]
  1506. },
  1507. "orientation": {
  1508. "type": "double",
  1509. "value": 0
  1510. },
  1511. "scale": {
  1512. "type": "list<double>",
  1513. "value": [
  1514. 1,
  1515. 1
  1516. ]
  1517. },
  1518. "textContent": {
  1519. "type": "string",
  1520. "value": "#"
  1521. },
  1522. "style": {
  1523. "type": "map<string,string>",
  1524. "value": {
  1525. "stroke": "#6000ff",
  1526. "fill": "#6000ff",
  1527. "font-size": "15px",
  1528. "opacity": "1"
  1529. }
  1530. },
  1531. "mapper": {
  1532. "type": "code",
  1533. "value": "({'textContent':getAttr('__pLabel')})"
  1534. },
  1535. "parser": {
  1536. "type": "code",
  1537. "value": "({'__pLabel':getAttr('textContent')})"
  1538. },
  1539. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1540. }
  1541. },
  1542. "edges": []
  1543. }
  1544. },
  1545. {
  1546. "name": "$asuri",
  1547. "type": "string",
  1548. "default": "-1"
  1549. },
  1550. {
  1551. "name": "$segments",
  1552. "type": "map<string,list<string>>",
  1553. "default": {}
  1554. }
  1555. ],
  1556. "__pbottomLink": [
  1557. {
  1558. "name": "link-style",
  1559. "type": "map<string,string>",
  1560. "default": {
  1561. "stroke": "#000000",
  1562. "stroke-dasharray": "",
  1563. "stroke-opacity": 1,
  1564. "stroke-width": 0
  1565. }
  1566. },
  1567. {
  1568. "name": "arrowHead",
  1569. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1570. "default": "custom"
  1571. },
  1572. {
  1573. "name": "arrowTail",
  1574. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1575. "default": "arrow-black"
  1576. },
  1577. {
  1578. "name": "typename",
  1579. "type": "string",
  1580. "default": "bottomLink"
  1581. },
  1582. {
  1583. "name": "position",
  1584. "type": "list<double>",
  1585. "default": [
  1586. 91,
  1587. 865
  1588. ]
  1589. },
  1590. {
  1591. "name": "orientation",
  1592. "type": "double",
  1593. "default": 0
  1594. },
  1595. {
  1596. "name": "scale",
  1597. "type": "list<double>",
  1598. "default": [
  1599. 1,
  1600. 1
  1601. ]
  1602. },
  1603. {
  1604. "name": "mapper",
  1605. "type": "code",
  1606. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1607. },
  1608. {
  1609. "name": "parser",
  1610. "type": "code",
  1611. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1612. },
  1613. {
  1614. "name": "$contents",
  1615. "type": "map<string,*>",
  1616. "default": {
  1617. "nodes": {
  1618. "__pLabelText": {
  1619. "position": {
  1620. "type": "list<double>",
  1621. "value": [
  1622. 0,
  1623. 0
  1624. ]
  1625. },
  1626. "orientation": {
  1627. "type": "double",
  1628. "value": 0
  1629. },
  1630. "scale": {
  1631. "type": "list<double>",
  1632. "value": [
  1633. 1,
  1634. 1
  1635. ]
  1636. },
  1637. "textContent": {
  1638. "type": "string",
  1639. "value": "#"
  1640. },
  1641. "style": {
  1642. "type": "map<string,string>",
  1643. "value": {
  1644. "stroke": "#6000ff",
  1645. "fill": "#6000ff",
  1646. "font-size": "15px",
  1647. "opacity": "1"
  1648. }
  1649. },
  1650. "mapper": {
  1651. "type": "code",
  1652. "value": "({'textContent':getAttr('__pLabel')})"
  1653. },
  1654. "parser": {
  1655. "type": "code",
  1656. "value": "({'__pLabel':getAttr('textContent')})"
  1657. },
  1658. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1659. }
  1660. },
  1661. "edges": []
  1662. }
  1663. },
  1664. {
  1665. "name": "$asuri",
  1666. "type": "string",
  1667. "default": "-1"
  1668. },
  1669. {
  1670. "name": "$segments",
  1671. "type": "map<string,list<string>>",
  1672. "default": {}
  1673. }
  1674. ],
  1675. "__ptopLink": [
  1676. {
  1677. "name": "link-style",
  1678. "type": "map<string,string>",
  1679. "default": {
  1680. "stroke": "#000000",
  1681. "stroke-dasharray": "",
  1682. "stroke-opacity": 1,
  1683. "stroke-width": 0
  1684. }
  1685. },
  1686. {
  1687. "name": "arrowHead",
  1688. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1689. "default": "custom"
  1690. },
  1691. {
  1692. "name": "arrowTail",
  1693. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1694. "default": "arrow-black"
  1695. },
  1696. {
  1697. "name": "typename",
  1698. "type": "string",
  1699. "default": "topLink"
  1700. },
  1701. {
  1702. "name": "position",
  1703. "type": "list<double>",
  1704. "default": [
  1705. 381,
  1706. 902
  1707. ]
  1708. },
  1709. {
  1710. "name": "orientation",
  1711. "type": "double",
  1712. "default": 0
  1713. },
  1714. {
  1715. "name": "scale",
  1716. "type": "list<double>",
  1717. "default": [
  1718. 1,
  1719. 1
  1720. ]
  1721. },
  1722. {
  1723. "name": "mapper",
  1724. "type": "code",
  1725. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1726. },
  1727. {
  1728. "name": "parser",
  1729. "type": "code",
  1730. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1731. },
  1732. {
  1733. "name": "$contents",
  1734. "type": "map<string,*>",
  1735. "default": {
  1736. "nodes": {
  1737. "__pLabelText": {
  1738. "position": {
  1739. "type": "list<double>",
  1740. "value": [
  1741. 0,
  1742. 0
  1743. ]
  1744. },
  1745. "orientation": {
  1746. "type": "double",
  1747. "value": 0
  1748. },
  1749. "scale": {
  1750. "type": "list<double>",
  1751. "value": [
  1752. 1,
  1753. 1
  1754. ]
  1755. },
  1756. "textContent": {
  1757. "type": "string",
  1758. "value": "#"
  1759. },
  1760. "style": {
  1761. "type": "map<string,string>",
  1762. "value": {
  1763. "stroke": "#6000ff",
  1764. "fill": "#6000ff",
  1765. "font-size": "15px",
  1766. "opacity": "1"
  1767. }
  1768. },
  1769. "mapper": {
  1770. "type": "code",
  1771. "value": "({'textContent':getAttr('__pLabel')})"
  1772. },
  1773. "parser": {
  1774. "type": "code",
  1775. "value": "({'__pLabel':getAttr('textContent')})"
  1776. },
  1777. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1778. }
  1779. },
  1780. "edges": []
  1781. }
  1782. },
  1783. {
  1784. "name": "$asuri",
  1785. "type": "string",
  1786. "default": "-1"
  1787. },
  1788. {
  1789. "name": "$segments",
  1790. "type": "map<string,list<string>>",
  1791. "default": {}
  1792. }
  1793. ],
  1794. "__pleftLink": [
  1795. {
  1796. "name": "link-style",
  1797. "type": "map<string,string>",
  1798. "default": {
  1799. "stroke": "#000000",
  1800. "stroke-dasharray": "",
  1801. "stroke-opacity": 1,
  1802. "stroke-width": 0
  1803. }
  1804. },
  1805. {
  1806. "name": "arrowHead",
  1807. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1808. "default": "custom"
  1809. },
  1810. {
  1811. "name": "arrowTail",
  1812. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1813. "default": "arrow-black"
  1814. },
  1815. {
  1816. "name": "typename",
  1817. "type": "string",
  1818. "default": "leftLink"
  1819. },
  1820. {
  1821. "name": "position",
  1822. "type": "list<double>",
  1823. "default": [
  1824. 659,
  1825. 948
  1826. ]
  1827. },
  1828. {
  1829. "name": "orientation",
  1830. "type": "double",
  1831. "default": 0
  1832. },
  1833. {
  1834. "name": "scale",
  1835. "type": "list<double>",
  1836. "default": [
  1837. 1,
  1838. 1
  1839. ]
  1840. },
  1841. {
  1842. "name": "mapper",
  1843. "type": "code",
  1844. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1845. },
  1846. {
  1847. "name": "parser",
  1848. "type": "code",
  1849. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1850. },
  1851. {
  1852. "name": "$contents",
  1853. "type": "map<string,*>",
  1854. "default": {
  1855. "nodes": {
  1856. "__pLabelText": {
  1857. "position": {
  1858. "type": "list<double>",
  1859. "value": [
  1860. 0,
  1861. 0
  1862. ]
  1863. },
  1864. "orientation": {
  1865. "type": "double",
  1866. "value": 0
  1867. },
  1868. "scale": {
  1869. "type": "list<double>",
  1870. "value": [
  1871. 1,
  1872. 1
  1873. ]
  1874. },
  1875. "textContent": {
  1876. "type": "string",
  1877. "value": "#"
  1878. },
  1879. "style": {
  1880. "type": "map<string,string>",
  1881. "value": {
  1882. "stroke": "#6000ff",
  1883. "fill": "#6000ff",
  1884. "font-size": "15px",
  1885. "opacity": "1"
  1886. }
  1887. },
  1888. "mapper": {
  1889. "type": "code",
  1890. "value": "({'textContent':getAttr('__pLabel')})"
  1891. },
  1892. "parser": {
  1893. "type": "code",
  1894. "value": "({'__pLabel':getAttr('textContent')})"
  1895. },
  1896. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1897. }
  1898. },
  1899. "edges": []
  1900. }
  1901. },
  1902. {
  1903. "name": "$asuri",
  1904. "type": "string",
  1905. "default": "-1"
  1906. },
  1907. {
  1908. "name": "$segments",
  1909. "type": "map<string,list<string>>",
  1910. "default": {}
  1911. }
  1912. ],
  1913. "__prightLink": [
  1914. {
  1915. "name": "link-style",
  1916. "type": "map<string,string>",
  1917. "default": {
  1918. "stroke": "#000000",
  1919. "stroke-dasharray": "",
  1920. "stroke-opacity": 1,
  1921. "stroke-width": 0
  1922. }
  1923. },
  1924. {
  1925. "name": "arrowHead",
  1926. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1927. "default": "custom"
  1928. },
  1929. {
  1930. "name": "arrowTail",
  1931. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1932. "default": "arrow-black"
  1933. },
  1934. {
  1935. "name": "typename",
  1936. "type": "string",
  1937. "default": "rightLink"
  1938. },
  1939. {
  1940. "name": "position",
  1941. "type": "list<double>",
  1942. "default": [
  1943. 941,
  1944. 1009
  1945. ]
  1946. },
  1947. {
  1948. "name": "orientation",
  1949. "type": "double",
  1950. "default": 0
  1951. },
  1952. {
  1953. "name": "scale",
  1954. "type": "list<double>",
  1955. "default": [
  1956. 1,
  1957. 1
  1958. ]
  1959. },
  1960. {
  1961. "name": "mapper",
  1962. "type": "code",
  1963. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1964. },
  1965. {
  1966. "name": "parser",
  1967. "type": "code",
  1968. "default": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1969. },
  1970. {
  1971. "name": "$contents",
  1972. "type": "map<string,*>",
  1973. "default": {
  1974. "nodes": {
  1975. "__pLabelText": {
  1976. "position": {
  1977. "type": "list<double>",
  1978. "value": [
  1979. 0,
  1980. 0
  1981. ]
  1982. },
  1983. "orientation": {
  1984. "type": "double",
  1985. "value": 0
  1986. },
  1987. "scale": {
  1988. "type": "list<double>",
  1989. "value": [
  1990. 1,
  1991. 1
  1992. ]
  1993. },
  1994. "textContent": {
  1995. "type": "string",
  1996. "value": "#"
  1997. },
  1998. "style": {
  1999. "type": "map<string,string>",
  2000. "value": {
  2001. "stroke": "#6000ff",
  2002. "fill": "#6000ff",
  2003. "font-size": "15px",
  2004. "opacity": "1"
  2005. }
  2006. },
  2007. "mapper": {
  2008. "type": "code",
  2009. "value": "({'textContent':getAttr('__pLabel')})"
  2010. },
  2011. "parser": {
  2012. "type": "code",
  2013. "value": "({'__pLabel':getAttr('textContent')})"
  2014. },
  2015. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2016. }
  2017. },
  2018. "edges": []
  2019. }
  2020. },
  2021. {
  2022. "name": "$asuri",
  2023. "type": "string",
  2024. "default": "-1"
  2025. },
  2026. {
  2027. "name": "$segments",
  2028. "type": "map<string,list<string>>",
  2029. "default": {}
  2030. }
  2031. ],
  2032. "__pPositionableIcon": [
  2033. {
  2034. "name": "typename",
  2035. "type": "string",
  2036. "default": "__pPositionableIcon"
  2037. },
  2038. {
  2039. "name": "position",
  2040. "type": "list<double>",
  2041. "default": [
  2042. 0,
  2043. 0
  2044. ]
  2045. },
  2046. {
  2047. "name": "orientation",
  2048. "type": "double",
  2049. "default": 0
  2050. },
  2051. {
  2052. "name": "scale",
  2053. "type": "list<double>",
  2054. "default": [
  2055. 1,
  2056. 1
  2057. ]
  2058. },
  2059. {
  2060. "name": "mapper",
  2061. "type": "code",
  2062. "default": ""
  2063. },
  2064. {
  2065. "name": "parser",
  2066. "type": "code",
  2067. "default": ""
  2068. },
  2069. {
  2070. "name": "$contents",
  2071. "type": "map<string,*>",
  2072. "default": {
  2073. "nodes": {
  2074. "text": {
  2075. "textContent": {
  2076. "type": "string",
  2077. "value": "__pPositionableIcon"
  2078. },
  2079. "style": {
  2080. "type": "map<string,string>",
  2081. "value": {
  2082. "stroke": "#000000",
  2083. "stroke-dasharray": "",
  2084. "fill": "#000000",
  2085. "fill-opacity": "1",
  2086. "font-size": "13px"
  2087. }
  2088. },
  2089. "mapper": {
  2090. "type": "code",
  2091. "value": ""
  2092. },
  2093. "parser": {
  2094. "type": "code",
  2095. "value": ""
  2096. },
  2097. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2098. "position": {
  2099. "type": "list<double>",
  2100. "value": [
  2101. 10,
  2102. 76
  2103. ]
  2104. },
  2105. "orientation": {
  2106. "type": "double",
  2107. "value": 0
  2108. },
  2109. "scale": {
  2110. "type": "list<double>",
  2111. "value": [
  2112. 1,
  2113. 1
  2114. ]
  2115. }
  2116. },
  2117. "rect": {
  2118. "width": {
  2119. "type": "double",
  2120. "value": 75
  2121. },
  2122. "height": {
  2123. "type": "double",
  2124. "value": 75
  2125. },
  2126. "cornerRadius": {
  2127. "type": "double",
  2128. "value": 15
  2129. },
  2130. "style": {
  2131. "type": "map<string,string>",
  2132. "value": {
  2133. "stroke": "#000000",
  2134. "fill": "#ffffff",
  2135. "fill-opacity": 0.75
  2136. }
  2137. },
  2138. "mapper": {
  2139. "type": "code",
  2140. "value": ""
  2141. },
  2142. "parser": {
  2143. "type": "code",
  2144. "value": ""
  2145. },
  2146. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2147. "position": {
  2148. "type": "list<double>",
  2149. "value": [
  2150. 0,
  2151. 0
  2152. ]
  2153. },
  2154. "orientation": {
  2155. "type": "double",
  2156. "value": 0
  2157. },
  2158. "scale": {
  2159. "type": "list<double>",
  2160. "value": [
  2161. 1,
  2162. 1
  2163. ]
  2164. }
  2165. },
  2166. "textBelowRect": {
  2167. "distance": {
  2168. "type": "double",
  2169. "value": 10
  2170. },
  2171. "alignment": {
  2172. "type": "ENUM(\"right\",\"left\",\"center\")",
  2173. "value": "center"
  2174. },
  2175. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  2176. "position": {
  2177. "type": "list<double>",
  2178. "value": [
  2179. 5,
  2180. 38
  2181. ]
  2182. },
  2183. "orientation": {
  2184. "type": "double",
  2185. "value": 0
  2186. },
  2187. "scale": {
  2188. "type": "list<double>",
  2189. "value": [
  2190. 1,
  2191. 1
  2192. ]
  2193. },
  2194. "link-style": {
  2195. "type": "map<string,string>",
  2196. "value": {
  2197. "stroke": "#00ff00",
  2198. "stroke-dasharray": "",
  2199. "stroke-opacity": 1,
  2200. "arrow-start": "none",
  2201. "arrow-end": "classic-wide-long"
  2202. }
  2203. }
  2204. },
  2205. "__pLabelText": {
  2206. "position": {
  2207. "type": "list<double>",
  2208. "value": [
  2209. 0,
  2210. 0
  2211. ]
  2212. },
  2213. "orientation": {
  2214. "type": "double",
  2215. "value": 0
  2216. },
  2217. "scale": {
  2218. "type": "list<double>",
  2219. "value": [
  2220. 1,
  2221. 1
  2222. ]
  2223. },
  2224. "textContent": {
  2225. "type": "string",
  2226. "value": "#"
  2227. },
  2228. "style": {
  2229. "type": "map<string,string>",
  2230. "value": {
  2231. "stroke": "#6000ff",
  2232. "fill": "#6000ff",
  2233. "font-size": "15px",
  2234. "opacity": "1"
  2235. }
  2236. },
  2237. "mapper": {
  2238. "type": "code",
  2239. "value": "({'textContent':getAttr('__pLabel')})"
  2240. },
  2241. "parser": {
  2242. "type": "code",
  2243. "value": "({'__pLabel':getAttr('textContent')})"
  2244. },
  2245. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2246. }
  2247. },
  2248. "edges": [
  2249. {
  2250. "src": "text",
  2251. "dest": "textBelowRect"
  2252. },
  2253. {
  2254. "src": "textBelowRect",
  2255. "dest": "rect"
  2256. }
  2257. ]
  2258. }
  2259. },
  2260. {
  2261. "name": "$asuri",
  2262. "type": "string",
  2263. "default": "-1"
  2264. }
  2265. ]
  2266. },
  2267. "constraints": [],
  2268. "actions": [],
  2269. "cardinalities": {
  2270. "__pPacmanIcon": [],
  2271. "__pGhostIcon": [],
  2272. "__pGridNodeIcon": [],
  2273. "__pFoodIcon": [],
  2274. "__pScoreboardIcon": [],
  2275. "__pPoGLink": [],
  2276. "__pFoGLink": [],
  2277. "__pGoGLink": [],
  2278. "__pbottomLink": [],
  2279. "__ptopLink": [],
  2280. "__pleftLink": [],
  2281. "__prightLink": [],
  2282. "__pPositionableIcon": []
  2283. },
  2284. "legalConnections": {},
  2285. "connectorTypes": {},
  2286. "types2parentTypes": {
  2287. "__pPacmanIcon": [],
  2288. "__pGhostIcon": [],
  2289. "__pGridNodeIcon": [],
  2290. "__pFoodIcon": [],
  2291. "__pScoreboardIcon": [],
  2292. "__pPoGLink": [],
  2293. "__pFoGLink": [],
  2294. "__pGoGLink": [],
  2295. "__pbottomLink": [],
  2296. "__ptopLink": [],
  2297. "__pleftLink": [],
  2298. "__prightLink": [],
  2299. "__pPositionableIcon": []
  2300. }
  2301. }