Subversion Repositories AndroidProjects

Rev

Rev 637 | Blame | Compare with Previous | Last modification | View Log | RSS feed

Menu "SubMenuEndless"
{
        origin 0, 0;
        
        Label "title"
        {
                position 240, 50;
                size 200, 40;
                align center, center;
                font "scoring";
                caption "ENDLESS MODE";
                scale 4;
        }

        Image "black"
        {
                position 0, 80;
                size 480, 470;
                align left, top;
                texture "data/textures/black.png";
                filter nearest, nearest;
                color 1, 1, 1, 0.5;
        }
        
        Label "explanationText1"
        {
                position 40, 110;
                size 400, 40;
                align left, top;
                textAlign left, top;
                color 1, 1, 1, 1;
                font "ingame";
                scale 1;
                lineBreak 2;
                caption "Move matching blocks together to create combos\nand chains!\nPlay without limits and with no specific goal!";
        }       
        
        Label "speedLabel"
        {
                position 240, 250;
                size 100, 20;
                align center, center;
                font "scoring";
                caption "Speed Level";
                scale 3;
        }
        
        Label "speed"
        {
                position 240, 320;
                size 50, 20;
                align center, center;
                textAlign right, center;
                font "scoring";
                caption "10";
                scale 5;
                color 0.7, 1, 0.3, 1;
        }       
        
        SegmentButton "speedDown"
        {
                position 200, 320;
                size 120, 100;
                caption "-";
                scale 2;
                align right, center;
                texture "data/textures/simplebutton.png";
                pushTexture "data/textures/simplebutton_pushed.png";
                scale 3;
                font "scoring";
                color 1, 1, 1, 1;
                pushColor 1, 1, 1, 1;
                pushOffset 0, 2;
                                
                onTouch "speed_down";
                pushSound "menu_push";
        }               
        
        SegmentButton "speedUp"
        {
                position 270, 320;
                size 120, 100;
                caption "+";
                scale 2;
                align left, center;
                texture "data/textures/simplebutton.png";
                pushTexture "data/textures/simplebutton_pushed.png";
                scale 3;
                font "scoring";
                color 1, 1, 1, 1;
                pushColor 1, 1, 1, 1;
                pushOffset 0, 2;
                                
                onTouch "speed_up";
                pushSound "menu_push";
        }               
        
        
        Label "rowsLabel"
        {
                position 240, 410;
                size 100, 20;
                align center, center;
                font "scoring";
                caption "Initial Rows";
                scale 3;
        }
                
        Label "rows"
        {
                position 240, 480;
                textAlign right, center;
                size 50, 20;
                align center, center;
                font "scoring";
                caption "10";
                scale 5;
                color 0.7, 1, 0.3, 1;
        }
        
        
        SegmentButton "rowsDown"
        {
                position 200, 480;
                size 120, 100;
                caption "-";
                scale 2;
                align right, center;
                texture "data/textures/simplebutton.png";
                pushTexture "data/textures/simplebutton_pushed.png";
                scale 3;
                font "scoring";
                color 1, 1, 1, 1;
                pushColor 1, 1, 1, 1;
                pushOffset 0, 2;
                                
                onTouch "rows_down";
                pushSound "menu_push";
        }               
        
        SegmentButton "rowsUp"
        {
                position 270, 480;
                size 120, 100;
                caption "+";
                scale 2;
                align left, center;
                texture "data/textures/simplebutton.png";
                pushTexture "data/textures/simplebutton_pushed.png";
                scale 3;
                font "scoring";
                color 1, 1, 1, 1;
                pushColor 1, 1, 1, 1;
                pushOffset 0, 2;
                
                onTouch "rows_up";
                pushSound "menu_push";
        }               

        SegmentButton "start"
        {
                position 240, 620;
                size 400, 120;
                caption "Start!";
                align center, center;
                texture "data/textures/simplebutton.png";
                pushTexture "data/textures/simplebutton_pushed.png";
                scale 3;
                font "scoring";
                color 1, 1, 1, 1;
                pushColor 1, 1, 1, 1;
                pushOffset 0, 2;
                onTouch "start_endless";

                clickSound "menu_confirm";                              
                pushSound "menu_push";
        }
        
        SegmentButton "back"
        {
                position 240, 730;
                size 400, 90;
                caption "Back";
                align center, center;
                texture "data/textures/simplebutton.png";
                pushTexture "data/textures/simplebutton_pushed.png";
                scale 3;
                font "scoring";
                color 1, 1, 1, 1;
                pushColor 1, 1, 1, 1;
                pushOffset 0, 2;
                onTouch "submenu_back";
                                
                pushSound "menu_push";
        }
}