add new (old) 'no border' deck
authorMatteo Nastasi <nastasi@alternativeoutput.it>
Sun, 10 May 2020 12:46:50 +0000 (14:46 +0200)
committerMatteo Nastasi <nastasi@alternativeoutput.it>
Sun, 10 May 2020 12:46:50 +0000 (14:46 +0200)
web/briskin5/Obj/briskin5.phh
web/briskin5/briskin5.js
web/briskin5/dnd.js

index bae5ff0..7ce17b0 100644 (file)
@@ -69,16 +69,19 @@ $table_wellarr = Array( 'it' => Array ( 'Benvenuto al tavolo. Se almeno tre gioc
                         'en' => Array ( 'EN Benvenuto al tavolo. Se almeno tre giocatori non sbloccano l\'uscita cliccando il lucchetto, chi esce non pu&ograve; risedersi a un qualunque tavolo per '.floor(BAN_TIME/60).' minuti.') );
 
 
-// FIXME - DYNAMIC WITH CACHE AND RELOAD FROM DB
+// DECK STUFF - FIXME - DYNAMIC WITH CACHE AND RELOAD FROM DB
 function deck_keys()
 {
-    return array('xx', 'yy');
+    return array('xx', 'nb', 'yy');
 }
 
+// DECK STUFF
 function deck_id2descr($id, $lang)
 {
     if ($id == 'xx')
         return 'carte originali';
+    else if ($id == 'nb')
+        return 'carte senza bordi';
     else if ($id == 'yy')
         return 'carte strette';
 
index d66c379..c3dacea 100644 (file)
@@ -322,6 +322,7 @@ function set_iscalling(idx)
 var preferences = new Preferences(true, 'xx', 'xx');
 // FIXME move it in the html dynamic generation scope
 var deck_list = { 'xx': 'Normal cards',
+                  'nb': 'No border cards',
                   'yy': 'Slim cards' }
 function preferences_init()
 {
index 309d197..1e75cb4 100644 (file)
@@ -46,8 +46,8 @@ var cards_we_n;
 var takes_we_n;
 
 /* width of images */
-var cards_widths = {'xx': 65, 'yy': 54};
-var cards_heights = {'xx': 111, 'yy': 111};
+var cards_widths = {'xx': 65, 'nb': 56, 'yy': 54};
+var cards_heights = {'xx': 111, 'nb': 102, 'yy': 111};
 
 var cards_width = cards_widths[g_deck];
 var cards_width_d2 =  Math.ceil(cards_width / 2);