Pacman.3dIcons.metamodel 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554
  1. {
  2. "types": {
  3. "PacmanIcon": [
  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": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({position:getAttr(\"position\")})"
  34. },
  35. {
  36. "name": "parser",
  37. "type": "code",
  38. "default": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({position:getAttr(\"position\")})"
  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": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  74. },
  75. "parser": {
  76. "type": "code",
  77. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  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. },
  100. "edges": []
  101. }
  102. },
  103. {
  104. "name": "$asuri",
  105. "type": "string",
  106. "default": "-1"
  107. }
  108. ],
  109. "GhostIcon": [
  110. {
  111. "name": "typename",
  112. "type": "string",
  113. "default": "GhostIcon"
  114. },
  115. {
  116. "name": "position",
  117. "type": "list<double>",
  118. "default": [
  119. 408,
  120. 212
  121. ]
  122. },
  123. {
  124. "name": "orientation",
  125. "type": "double",
  126. "default": 0
  127. },
  128. {
  129. "name": "scale",
  130. "type": "list<double>",
  131. "default": [
  132. 1,
  133. 1
  134. ]
  135. },
  136. {
  137. "name": "mapper",
  138. "type": "code",
  139. "default": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({position:getAttr(\"position\")})"
  140. },
  141. {
  142. "name": "parser",
  143. "type": "code",
  144. "default": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({position:getAttr(\"position\")})"
  145. },
  146. {
  147. "name": "$contents",
  148. "type": "map<string,*>",
  149. "default": {
  150. "nodes": {
  151. "40": {
  152. "src": {
  153. "type": "string",
  154. "value": "http://www.cliparts101.com/files/826/A0963C24B269D40299C2A21CC837D66F/Game_baddie_Devil.png"
  155. },
  156. "width": {
  157. "type": "double",
  158. "value": 48
  159. },
  160. "height": {
  161. "type": "double",
  162. "value": 48
  163. },
  164. "style": {
  165. "type": "map<string,string>",
  166. "value": {
  167. "stroke": "#000000",
  168. "stroke-dasharray": "",
  169. "fill": "#ffffff",
  170. "fill-opacity": 0.75,
  171. "font-size": "20px",
  172. "stroke-width": 1,
  173. "arrow-start": "none",
  174. "arrow-end": "none"
  175. }
  176. },
  177. "mapper": {
  178. "type": "code",
  179. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  180. },
  181. "parser": {
  182. "type": "code",
  183. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  184. },
  185. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  186. "position": {
  187. "type": "list<double>",
  188. "value": [
  189. 1,
  190. 1
  191. ]
  192. },
  193. "orientation": {
  194. "type": "double",
  195. "value": 0
  196. },
  197. "scale": {
  198. "type": "list<double>",
  199. "value": [
  200. 1,
  201. 1
  202. ]
  203. }
  204. }
  205. },
  206. "edges": []
  207. }
  208. },
  209. {
  210. "name": "$asuri",
  211. "type": "string",
  212. "default": "-1"
  213. }
  214. ],
  215. "GridNodeIcon": [
  216. {
  217. "name": "typename",
  218. "type": "string",
  219. "default": "GridNodeIcon"
  220. },
  221. {
  222. "name": "position",
  223. "type": "list<double>",
  224. "default": [
  225. 683,
  226. 235
  227. ]
  228. },
  229. {
  230. "name": "orientation",
  231. "type": "double",
  232. "default": 0
  233. },
  234. {
  235. "name": "scale",
  236. "type": "list<double>",
  237. "default": [
  238. 1,
  239. 1
  240. ]
  241. },
  242. {
  243. "name": "mapper",
  244. "type": "code",
  245. "default": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({position:getAttr(\"position\")})"
  246. },
  247. {
  248. "name": "parser",
  249. "type": "code",
  250. "default": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */\n({position:getAttr(\"position\")})"
  251. },
  252. {
  253. "name": "$contents",
  254. "type": "map<string,*>",
  255. "default": {
  256. "nodes": {
  257. "35": {
  258. "width": {
  259. "type": "double",
  260. "value": 100
  261. },
  262. "height": {
  263. "type": "double",
  264. "value": 100
  265. },
  266. "cornerRadius": {
  267. "type": "double",
  268. "value": 0
  269. },
  270. "style": {
  271. "type": "map<string,string>",
  272. "value": {
  273. "stroke": "#000000",
  274. "stroke-dasharray": "",
  275. "fill": "gray",
  276. "fill-opacity": 0.75,
  277. "font-size": "20px",
  278. "stroke-width": 1,
  279. "arrow-start": "none",
  280. "arrow-end": "none"
  281. }
  282. },
  283. "mapper": {
  284. "type": "code",
  285. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  286. },
  287. "parser": {
  288. "type": "code",
  289. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  290. },
  291. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  292. "position": {
  293. "type": "list<double>",
  294. "value": [
  295. 3,
  296. 1
  297. ]
  298. },
  299. "orientation": {
  300. "type": "double",
  301. "value": 0
  302. },
  303. "scale": {
  304. "type": "list<double>",
  305. "value": [
  306. 1,
  307. 1
  308. ]
  309. }
  310. },
  311. "46": {
  312. "width": {
  313. "type": "double",
  314. "value": 30
  315. },
  316. "height": {
  317. "type": "double",
  318. "value": 30
  319. },
  320. "cornerRadius": {
  321. "type": "double",
  322. "value": 0
  323. },
  324. "style": {
  325. "type": "map<string,string>",
  326. "value": {
  327. "stroke": "#000000",
  328. "stroke-dasharray": "",
  329. "fill": "#000000",
  330. "fill-opacity": 0.75,
  331. "font-size": "20px",
  332. "stroke-width": 1,
  333. "arrow-start": "none",
  334. "arrow-end": "none"
  335. }
  336. },
  337. "mapper": {
  338. "type": "code",
  339. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  340. },
  341. "parser": {
  342. "type": "code",
  343. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  344. },
  345. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  346. "position": {
  347. "type": "list<double>",
  348. "value": [
  349. 4,
  350. 70
  351. ]
  352. },
  353. "orientation": {
  354. "type": "double",
  355. "value": 0
  356. },
  357. "scale": {
  358. "type": "list<double>",
  359. "value": [
  360. 1,
  361. 1
  362. ]
  363. }
  364. },
  365. "47": {
  366. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  367. "position": {
  368. "type": "list<double>",
  369. "value": [
  370. 11.5,
  371. 43.5
  372. ]
  373. },
  374. "orientation": {
  375. "type": "double",
  376. "value": 0
  377. },
  378. "scale": {
  379. "type": "list<double>",
  380. "value": [
  381. 1,
  382. 1
  383. ]
  384. },
  385. "link-style": {
  386. "type": "map<string,string>",
  387. "value": {
  388. "stroke": "#00ffff",
  389. "stroke-dasharray": "",
  390. "stroke-opacity": 0.1,
  391. "stroke-width": 1
  392. }
  393. }
  394. },
  395. "48": {
  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": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  424. },
  425. "parser": {
  426. "type": "code",
  427. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  428. },
  429. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  430. "position": {
  431. "type": "list<double>",
  432. "value": [
  433. 72,
  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. "49": {
  450. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  451. "position": {
  452. "type": "list<double>",
  453. "value": [
  454. 11.10434519602211,
  455. 10.610866770773413
  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. "50": {
  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": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  508. },
  509. "parser": {
  510. "type": "code",
  511. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  512. },
  513. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  514. "position": {
  515. "type": "list<double>",
  516. "value": [
  517. 72,
  518. 3
  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. "51": {
  534. "width": {
  535. "type": "double",
  536. "value": 30
  537. },
  538. "height": {
  539. "type": "double",
  540. "value": 30
  541. },
  542. "cornerRadius": {
  543. "type": "double",
  544. "value": 0
  545. },
  546. "style": {
  547. "type": "map<string,string>",
  548. "value": {
  549. "stroke": "#000000",
  550. "stroke-dasharray": "",
  551. "fill": "#000000",
  552. "fill-opacity": 0.75,
  553. "font-size": "20px",
  554. "stroke-width": 1,
  555. "arrow-start": "none",
  556. "arrow-end": "none"
  557. }
  558. },
  559. "mapper": {
  560. "type": "code",
  561. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  562. },
  563. "parser": {
  564. "type": "code",
  565. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  566. },
  567. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  568. "position": {
  569. "type": "list<double>",
  570. "value": [
  571. 4,
  572. 3
  573. ]
  574. },
  575. "orientation": {
  576. "type": "double",
  577. "value": 0
  578. },
  579. "scale": {
  580. "type": "list<double>",
  581. "value": [
  582. 1,
  583. 1
  584. ]
  585. }
  586. },
  587. "53": {
  588. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  589. "position": {
  590. "type": "list<double>",
  591. "value": [
  592. 45,
  593. 10
  594. ]
  595. },
  596. "orientation": {
  597. "type": "double",
  598. "value": 0
  599. },
  600. "scale": {
  601. "type": "list<double>",
  602. "value": [
  603. 1,
  604. 1
  605. ]
  606. },
  607. "link-style": {
  608. "type": "map<string,string>",
  609. "value": {
  610. "stroke": "#00ffff",
  611. "stroke-dasharray": "",
  612. "stroke-opacity": 0.1,
  613. "stroke-width": 1
  614. }
  615. }
  616. },
  617. "54": {
  618. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  619. "position": {
  620. "type": "list<double>",
  621. "value": [
  622. 11.10434519602211,
  623. 10.610866770773413
  624. ]
  625. },
  626. "orientation": {
  627. "type": "double",
  628. "value": 0
  629. },
  630. "scale": {
  631. "type": "list<double>",
  632. "value": [
  633. 1,
  634. 1
  635. ]
  636. },
  637. "link-style": {
  638. "type": "map<string,string>",
  639. "value": {
  640. "stroke": "#00ffff",
  641. "stroke-dasharray": "",
  642. "stroke-opacity": 0.1,
  643. "stroke-width": 1
  644. }
  645. }
  646. }
  647. },
  648. "edges": [
  649. {
  650. "src": "35",
  651. "dest": "47"
  652. },
  653. {
  654. "src": "47",
  655. "dest": "46"
  656. },
  657. {
  658. "src": "35",
  659. "dest": "49"
  660. },
  661. {
  662. "src": "49",
  663. "dest": "48"
  664. },
  665. {
  666. "src": "35",
  667. "dest": "53"
  668. },
  669. {
  670. "src": "53",
  671. "dest": "50"
  672. },
  673. {
  674. "src": "35",
  675. "dest": "54"
  676. },
  677. {
  678. "src": "54",
  679. "dest": "51"
  680. }
  681. ]
  682. }
  683. },
  684. {
  685. "name": "$asuri",
  686. "type": "string",
  687. "default": "-1"
  688. }
  689. ],
  690. "FoodIcon": [
  691. {
  692. "name": "typename",
  693. "type": "string",
  694. "default": "FoodIcon"
  695. },
  696. {
  697. "name": "position",
  698. "type": "list<double>",
  699. "default": [
  700. 947,
  701. 232
  702. ]
  703. },
  704. {
  705. "name": "orientation",
  706. "type": "double",
  707. "default": 0
  708. },
  709. {
  710. "name": "scale",
  711. "type": "list<double>",
  712. "default": [
  713. 1,
  714. 1
  715. ]
  716. },
  717. {
  718. "name": "mapper",
  719. "type": "code",
  720. "default": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({position:getAttr(\"position\")})"
  721. },
  722. {
  723. "name": "parser",
  724. "type": "code",
  725. "default": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({position:getAttr(\"position\")})"
  726. },
  727. {
  728. "name": "$contents",
  729. "type": "map<string,*>",
  730. "default": {
  731. "nodes": {
  732. "42": {
  733. "src": {
  734. "type": "string",
  735. "value": "http://www.psdgraphics.com/wp-content/uploads/2009/06/glossy-ball-icon.jpg"
  736. },
  737. "width": {
  738. "type": "double",
  739. "value": 20
  740. },
  741. "height": {
  742. "type": "double",
  743. "value": 15
  744. },
  745. "style": {
  746. "type": "map<string,string>",
  747. "value": {
  748. "stroke": "#000000",
  749. "stroke-dasharray": "",
  750. "fill": "#ffffff",
  751. "fill-opacity": 0.75,
  752. "font-size": "20px",
  753. "stroke-width": 1,
  754. "arrow-start": "none",
  755. "arrow-end": "none"
  756. }
  757. },
  758. "mapper": {
  759. "type": "code",
  760. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  761. },
  762. "parser": {
  763. "type": "code",
  764. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  765. },
  766. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Image",
  767. "position": {
  768. "type": "list<double>",
  769. "value": [
  770. 1,
  771. 2
  772. ]
  773. },
  774. "orientation": {
  775. "type": "double",
  776. "value": 0
  777. },
  778. "scale": {
  779. "type": "list<double>",
  780. "value": [
  781. 1,
  782. 1
  783. ]
  784. }
  785. }
  786. },
  787. "edges": []
  788. }
  789. },
  790. {
  791. "name": "$asuri",
  792. "type": "string",
  793. "default": "-1"
  794. }
  795. ],
  796. "ScoreboardIcon": [
  797. {
  798. "name": "typename",
  799. "type": "string",
  800. "default": "ScoreboardIcon"
  801. },
  802. {
  803. "name": "position",
  804. "type": "list<double>",
  805. "default": [
  806. 1243,
  807. 311
  808. ]
  809. },
  810. {
  811. "name": "orientation",
  812. "type": "double",
  813. "default": 0
  814. },
  815. {
  816. "name": "scale",
  817. "type": "list<double>",
  818. "default": [
  819. 1,
  820. 1
  821. ]
  822. },
  823. {
  824. "name": "mapper",
  825. "type": "code",
  826. "default": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  827. },
  828. {
  829. "name": "parser",
  830. "type": "code",
  831. "default": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  832. },
  833. {
  834. "name": "$contents",
  835. "type": "map<string,*>",
  836. "default": {
  837. "nodes": {
  838. "23": {
  839. "width": {
  840. "type": "double",
  841. "value": 100
  842. },
  843. "height": {
  844. "type": "double",
  845. "value": 50
  846. },
  847. "cornerRadius": {
  848. "type": "double",
  849. "value": 5
  850. },
  851. "style": {
  852. "type": "map<string,string>",
  853. "value": {
  854. "stroke": "#000000",
  855. "stroke-dasharray": "",
  856. "fill": "#ffffff",
  857. "fill-opacity": 0.75,
  858. "font-size": "20px",
  859. "stroke-width": 1,
  860. "arrow-start": "none",
  861. "arrow-end": "none"
  862. }
  863. },
  864. "mapper": {
  865. "type": "code",
  866. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  867. },
  868. "parser": {
  869. "type": "code",
  870. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  871. },
  872. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  873. "position": {
  874. "type": "list<double>",
  875. "value": [
  876. 5,
  877. 3
  878. ]
  879. },
  880. "orientation": {
  881. "type": "double",
  882. "value": 0
  883. },
  884. "scale": {
  885. "type": "list<double>",
  886. "value": [
  887. 1,
  888. 1
  889. ]
  890. }
  891. },
  892. "24": {
  893. "textContent": {
  894. "type": "string",
  895. "value": "Score"
  896. },
  897. "style": {
  898. "type": "map<string,string>",
  899. "value": {
  900. "font-family": "Times",
  901. "stroke": "#000000",
  902. "stroke-dasharray": "",
  903. "fill": "#ffffff",
  904. "fill-opacity": 0.75,
  905. "font-size": "20px",
  906. "stroke-width": 1,
  907. "arrow-start": "none",
  908. "arrow-end": "none"
  909. }
  910. },
  911. "mapper": {
  912. "type": "code",
  913. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n({textContent: \"Score \" + getAttr(\"score\")})\n"
  914. },
  915. "parser": {
  916. "type": "code",
  917. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  918. },
  919. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  920. "position": {
  921. "type": "list<double>",
  922. "value": [
  923. 34,
  924. 19
  925. ]
  926. },
  927. "orientation": {
  928. "type": "double",
  929. "value": 0
  930. },
  931. "scale": {
  932. "type": "list<double>",
  933. "value": [
  934. 1,
  935. 1
  936. ]
  937. }
  938. },
  939. "25": {
  940. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  941. "position": {
  942. "type": "list<double>",
  943. "value": [
  944. 26.130247748546935,
  945. 16.577124547887706
  946. ]
  947. },
  948. "orientation": {
  949. "type": "double",
  950. "value": 0
  951. },
  952. "scale": {
  953. "type": "list<double>",
  954. "value": [
  955. 1,
  956. 1
  957. ]
  958. },
  959. "link-style": {
  960. "type": "map<string,string>",
  961. "value": {
  962. "stroke": "#00ffff",
  963. "stroke-dasharray": "",
  964. "stroke-opacity": 0.1,
  965. "arrow-start": "none",
  966. "arrow-end": "classic-wide-long"
  967. }
  968. }
  969. }
  970. },
  971. "edges": [
  972. {
  973. "src": "23",
  974. "dest": "25"
  975. },
  976. {
  977. "src": "25",
  978. "dest": "24"
  979. }
  980. ]
  981. }
  982. },
  983. {
  984. "name": "$asuri",
  985. "type": "string",
  986. "default": "-1"
  987. }
  988. ],
  989. "PoGLink": [
  990. {
  991. "name": "link-style",
  992. "type": "map<string,string>",
  993. "default": {
  994. "stroke": "#000000",
  995. "stroke-dasharray": "",
  996. "stroke-opacity": 1,
  997. "stroke-width": 0
  998. }
  999. },
  1000. {
  1001. "name": "arrowHead",
  1002. "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)",
  1003. "default": "custom"
  1004. },
  1005. {
  1006. "name": "arrowTail",
  1007. "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)",
  1008. "default": "arrow-black"
  1009. },
  1010. {
  1011. "name": "typename",
  1012. "type": "string",
  1013. "default": "PoGLink"
  1014. },
  1015. {
  1016. "name": "position",
  1017. "type": "list<double>",
  1018. "default": [
  1019. 52,
  1020. 535
  1021. ]
  1022. },
  1023. {
  1024. "name": "orientation",
  1025. "type": "double",
  1026. "default": 0
  1027. },
  1028. {
  1029. "name": "scale",
  1030. "type": "list<double>",
  1031. "default": [
  1032. 1,
  1033. 1
  1034. ]
  1035. },
  1036. {
  1037. "name": "mapper",
  1038. "type": "code",
  1039. "default": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1040. },
  1041. {
  1042. "name": "parser",
  1043. "type": "code",
  1044. "default": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1045. },
  1046. {
  1047. "name": "$contents",
  1048. "type": "map<string,*>",
  1049. "default": {
  1050. "nodes": {},
  1051. "edges": []
  1052. }
  1053. },
  1054. {
  1055. "name": "$asuri",
  1056. "type": "string",
  1057. "default": "-1"
  1058. },
  1059. {
  1060. "name": "$segments",
  1061. "type": "map<string,list<string>>",
  1062. "default": {}
  1063. }
  1064. ],
  1065. "FoGLink": [
  1066. {
  1067. "name": "link-style",
  1068. "type": "map<string,string>",
  1069. "default": {
  1070. "stroke": "#000000",
  1071. "stroke-dasharray": "",
  1072. "stroke-opacity": 1,
  1073. "stroke-width": 0
  1074. }
  1075. },
  1076. {
  1077. "name": "arrowHead",
  1078. "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)",
  1079. "default": "custom"
  1080. },
  1081. {
  1082. "name": "arrowTail",
  1083. "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)",
  1084. "default": "arrow-black"
  1085. },
  1086. {
  1087. "name": "typename",
  1088. "type": "string",
  1089. "default": "FoGLink"
  1090. },
  1091. {
  1092. "name": "position",
  1093. "type": "list<double>",
  1094. "default": [
  1095. 324,
  1096. 592
  1097. ]
  1098. },
  1099. {
  1100. "name": "orientation",
  1101. "type": "double",
  1102. "default": 0
  1103. },
  1104. {
  1105. "name": "scale",
  1106. "type": "list<double>",
  1107. "default": [
  1108. 1,
  1109. 1
  1110. ]
  1111. },
  1112. {
  1113. "name": "mapper",
  1114. "type": "code",
  1115. "default": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1116. },
  1117. {
  1118. "name": "parser",
  1119. "type": "code",
  1120. "default": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1121. },
  1122. {
  1123. "name": "$contents",
  1124. "type": "map<string,*>",
  1125. "default": {
  1126. "nodes": {},
  1127. "edges": []
  1128. }
  1129. },
  1130. {
  1131. "name": "$asuri",
  1132. "type": "string",
  1133. "default": "-1"
  1134. },
  1135. {
  1136. "name": "$segments",
  1137. "type": "map<string,list<string>>",
  1138. "default": {}
  1139. }
  1140. ],
  1141. "GoGLink": [
  1142. {
  1143. "name": "link-style",
  1144. "type": "map<string,string>",
  1145. "default": {
  1146. "stroke": "#000000",
  1147. "stroke-dasharray": "",
  1148. "stroke-opacity": 1,
  1149. "stroke-width": 0
  1150. }
  1151. },
  1152. {
  1153. "name": "arrowHead",
  1154. "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)",
  1155. "default": "custom"
  1156. },
  1157. {
  1158. "name": "arrowTail",
  1159. "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)",
  1160. "default": "arrow-black"
  1161. },
  1162. {
  1163. "name": "typename",
  1164. "type": "string",
  1165. "default": "GoGLink"
  1166. },
  1167. {
  1168. "name": "position",
  1169. "type": "list<double>",
  1170. "default": [
  1171. 589,
  1172. 664
  1173. ]
  1174. },
  1175. {
  1176. "name": "orientation",
  1177. "type": "double",
  1178. "default": 0
  1179. },
  1180. {
  1181. "name": "scale",
  1182. "type": "list<double>",
  1183. "default": [
  1184. 1,
  1185. 1
  1186. ]
  1187. },
  1188. {
  1189. "name": "mapper",
  1190. "type": "code",
  1191. "default": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1192. },
  1193. {
  1194. "name": "parser",
  1195. "type": "code",
  1196. "default": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1197. },
  1198. {
  1199. "name": "$contents",
  1200. "type": "map<string,*>",
  1201. "default": {
  1202. "nodes": {},
  1203. "edges": []
  1204. }
  1205. },
  1206. {
  1207. "name": "$asuri",
  1208. "type": "string",
  1209. "default": "-1"
  1210. },
  1211. {
  1212. "name": "$segments",
  1213. "type": "map<string,list<string>>",
  1214. "default": {}
  1215. }
  1216. ],
  1217. "bottomLink": [
  1218. {
  1219. "name": "link-style",
  1220. "type": "map<string,string>",
  1221. "default": {
  1222. "stroke": "#000000",
  1223. "stroke-dasharray": "",
  1224. "stroke-opacity": 1,
  1225. "stroke-width": 0
  1226. }
  1227. },
  1228. {
  1229. "name": "arrowHead",
  1230. "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)",
  1231. "default": "custom"
  1232. },
  1233. {
  1234. "name": "arrowTail",
  1235. "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)",
  1236. "default": "arrow-black"
  1237. },
  1238. {
  1239. "name": "typename",
  1240. "type": "string",
  1241. "default": "bottomLink"
  1242. },
  1243. {
  1244. "name": "position",
  1245. "type": "list<double>",
  1246. "default": [
  1247. 91,
  1248. 865
  1249. ]
  1250. },
  1251. {
  1252. "name": "orientation",
  1253. "type": "double",
  1254. "default": 0
  1255. },
  1256. {
  1257. "name": "scale",
  1258. "type": "list<double>",
  1259. "default": [
  1260. 1,
  1261. 1
  1262. ]
  1263. },
  1264. {
  1265. "name": "mapper",
  1266. "type": "code",
  1267. "default": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1268. },
  1269. {
  1270. "name": "parser",
  1271. "type": "code",
  1272. "default": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1273. },
  1274. {
  1275. "name": "$contents",
  1276. "type": "map<string,*>",
  1277. "default": {
  1278. "nodes": {},
  1279. "edges": []
  1280. }
  1281. },
  1282. {
  1283. "name": "$asuri",
  1284. "type": "string",
  1285. "default": "-1"
  1286. },
  1287. {
  1288. "name": "$segments",
  1289. "type": "map<string,list<string>>",
  1290. "default": {}
  1291. }
  1292. ],
  1293. "topLink": [
  1294. {
  1295. "name": "link-style",
  1296. "type": "map<string,string>",
  1297. "default": {
  1298. "stroke": "#000000",
  1299. "stroke-dasharray": "",
  1300. "stroke-opacity": 1,
  1301. "stroke-width": 0
  1302. }
  1303. },
  1304. {
  1305. "name": "arrowHead",
  1306. "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)",
  1307. "default": "custom"
  1308. },
  1309. {
  1310. "name": "arrowTail",
  1311. "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)",
  1312. "default": "arrow-black"
  1313. },
  1314. {
  1315. "name": "typename",
  1316. "type": "string",
  1317. "default": "topLink"
  1318. },
  1319. {
  1320. "name": "position",
  1321. "type": "list<double>",
  1322. "default": [
  1323. 381,
  1324. 902
  1325. ]
  1326. },
  1327. {
  1328. "name": "orientation",
  1329. "type": "double",
  1330. "default": 0
  1331. },
  1332. {
  1333. "name": "scale",
  1334. "type": "list<double>",
  1335. "default": [
  1336. 1,
  1337. 1
  1338. ]
  1339. },
  1340. {
  1341. "name": "mapper",
  1342. "type": "code",
  1343. "default": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1344. },
  1345. {
  1346. "name": "parser",
  1347. "type": "code",
  1348. "default": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1349. },
  1350. {
  1351. "name": "$contents",
  1352. "type": "map<string,*>",
  1353. "default": {
  1354. "nodes": {},
  1355. "edges": []
  1356. }
  1357. },
  1358. {
  1359. "name": "$asuri",
  1360. "type": "string",
  1361. "default": "-1"
  1362. },
  1363. {
  1364. "name": "$segments",
  1365. "type": "map<string,list<string>>",
  1366. "default": {}
  1367. }
  1368. ],
  1369. "leftLink": [
  1370. {
  1371. "name": "link-style",
  1372. "type": "map<string,string>",
  1373. "default": {
  1374. "stroke": "#000000",
  1375. "stroke-dasharray": "",
  1376. "stroke-opacity": 1,
  1377. "stroke-width": 0
  1378. }
  1379. },
  1380. {
  1381. "name": "arrowHead",
  1382. "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)",
  1383. "default": "custom"
  1384. },
  1385. {
  1386. "name": "arrowTail",
  1387. "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)",
  1388. "default": "arrow-black"
  1389. },
  1390. {
  1391. "name": "typename",
  1392. "type": "string",
  1393. "default": "leftLink"
  1394. },
  1395. {
  1396. "name": "position",
  1397. "type": "list<double>",
  1398. "default": [
  1399. 659,
  1400. 948
  1401. ]
  1402. },
  1403. {
  1404. "name": "orientation",
  1405. "type": "double",
  1406. "default": 0
  1407. },
  1408. {
  1409. "name": "scale",
  1410. "type": "list<double>",
  1411. "default": [
  1412. 1,
  1413. 1
  1414. ]
  1415. },
  1416. {
  1417. "name": "mapper",
  1418. "type": "code",
  1419. "default": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1420. },
  1421. {
  1422. "name": "parser",
  1423. "type": "code",
  1424. "default": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1425. },
  1426. {
  1427. "name": "$contents",
  1428. "type": "map<string,*>",
  1429. "default": {
  1430. "nodes": {},
  1431. "edges": []
  1432. }
  1433. },
  1434. {
  1435. "name": "$asuri",
  1436. "type": "string",
  1437. "default": "-1"
  1438. },
  1439. {
  1440. "name": "$segments",
  1441. "type": "map<string,list<string>>",
  1442. "default": {}
  1443. }
  1444. ],
  1445. "rightLink": [
  1446. {
  1447. "name": "link-style",
  1448. "type": "map<string,string>",
  1449. "default": {
  1450. "stroke": "#000000",
  1451. "stroke-dasharray": "",
  1452. "stroke-opacity": 1,
  1453. "stroke-width": 0
  1454. }
  1455. },
  1456. {
  1457. "name": "arrowHead",
  1458. "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)",
  1459. "default": "custom"
  1460. },
  1461. {
  1462. "name": "arrowTail",
  1463. "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)",
  1464. "default": "arrow-black"
  1465. },
  1466. {
  1467. "name": "typename",
  1468. "type": "string",
  1469. "default": "rightLink"
  1470. },
  1471. {
  1472. "name": "position",
  1473. "type": "list<double>",
  1474. "default": [
  1475. 941,
  1476. 1009
  1477. ]
  1478. },
  1479. {
  1480. "name": "orientation",
  1481. "type": "double",
  1482. "default": 0
  1483. },
  1484. {
  1485. "name": "scale",
  1486. "type": "list<double>",
  1487. "default": [
  1488. 1,
  1489. 1
  1490. ]
  1491. },
  1492. {
  1493. "name": "mapper",
  1494. "type": "code",
  1495. "default": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1496. },
  1497. {
  1498. "name": "parser",
  1499. "type": "code",
  1500. "default": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1501. },
  1502. {
  1503. "name": "$contents",
  1504. "type": "map<string,*>",
  1505. "default": {
  1506. "nodes": {},
  1507. "edges": []
  1508. }
  1509. },
  1510. {
  1511. "name": "$asuri",
  1512. "type": "string",
  1513. "default": "-1"
  1514. },
  1515. {
  1516. "name": "$segments",
  1517. "type": "map<string,list<string>>",
  1518. "default": {}
  1519. }
  1520. ]
  1521. },
  1522. "constraints": [],
  1523. "actions": [],
  1524. "cardinalities": {
  1525. "PacmanIcon": [],
  1526. "GhostIcon": [],
  1527. "GridNodeIcon": [],
  1528. "FoodIcon": [],
  1529. "ScoreboardIcon": [],
  1530. "PoGLink": [],
  1531. "FoGLink": [],
  1532. "GoGLink": [],
  1533. "bottomLink": [],
  1534. "topLink": [],
  1535. "leftLink": [],
  1536. "rightLink": []
  1537. },
  1538. "legalConnections": {},
  1539. "connectorTypes": {},
  1540. "types2parentTypes": {
  1541. "PacmanIcon": [],
  1542. "GhostIcon": [],
  1543. "GridNodeIcon": [],
  1544. "FoodIcon": [],
  1545. "ScoreboardIcon": [],
  1546. "PoGLink": [],
  1547. "FoGLink": [],
  1548. "GoGLink": [],
  1549. "bottomLink": [],
  1550. "topLink": [],
  1551. "leftLink": [],
  1552. "rightLink": []
  1553. }
  1554. }