void abtus()
{
     closegraph();
    top();
    setcolor(12);
    setbkcolor(BLUE);
    settextstyle(0,0,7);
    outtextxy(400,30,"About Us");
    
    settextstyle(0,0,3);
    outtextxy(50,170,"Address:");
    
    setcolor(10);
    settextstyle(0,0,2);
    outtextxy(50,130,"ROX Network Entertainment India Limited");
    outtextxy(150,220,"1.Head Office");
    outtextxy(150,240,"  #36 Chandrama");
    outtextxy(150,260,"  18th cross,24th main");
    outtextxy(150,280,"  J.P Nagar 6th phase");
    outtextxy(150,300,"  Bangalore-78");
    outtextxy(150,320,"  Ph.no:974103243");
    
    outtextxy(150,360,"2.Branch Office");
    outtextxy(150,380,"  #85 2nd cross,6th main");
    outtextxy(150,400,"  J.P Nagar 3rd phase");
    outtextxy(150,420,"  Bangalore-78");
    outtextxy(150,440,"  Ph.no:974103244");
    
    outtextxy(50,530,"http://in.ROX.com");
    outtextxy(50,550,"Customer Service: [email protected]");
    
    while(!kbhit());
    home();
    recommend(10,11);
}
void coninfo()
{
    closegraph();
    top();
    setcolor(12);
    setbkcolor(BLUE);
    settextstyle(0,0,7);
    outtextxy(270,30,"Console Info");
    char rand[]="The V-ROK system can play hundreds of amazing games, from Chessmaster to SOCOM: Fire Team Bravo,starting. Each title is created to maximize the potential of a portable player console-quality graphics and a powerful LCD screen make every game shine, and new games are never in short supply. Download them directly to your V-ROK system from V-Play Store. The V-ROK system comes with Skype(Talk for free),DLNA(remotely access your PC,DVR,TV and more),RSS(Stay on top of it all) and internet browsing(The internet in your hands).";
    char rand1[]="Personalize the XMB™ home menu on your V-ROK system with custom themes, backgrounds and icons.";
    char rand2[]="Manually change your V-ROK system background color - blue when you're feeling blue, orange when you're feeling whatever an orange feels like. Or you can let the V-ROK system work on its own and the background color of the XMB™ will automatically change monthly.";
    char rand3[]="Use your favorite photo or digital image as wallpaper. May we suggest the pic of catching that ridiculous wave? Or the first time you did an Ollie in an empty swimming pool.";
    char rand4[]="Change the whole look - icons and background - with a custom theme. Choose your favorite theme from the V-Play Store or find one online.";
    
    setcolor(10);
    settextstyle(0,0,2);
    outparaxy(50,100,15,rand);
    outparaxy(50,250,15,rand1);
    outparaxy(50,330,15,rand2);
    outparaxy(50,440,15,rand3);
    outparaxy(50,530,15,rand4);
    
    setcolor(12);
    settextstyle(0,0,3);
    outtextxy(50,220,"Go ahead. Make it your own:");
    outtextxy(50,300,"Background colour:");
    outtextxy(50,410,"Wallpaper:");
    outtextxy(50,500,"Custom themes:");
    while(!kbhit());
    home();
    recommend(10,11);
}
void help()
{
     closegraph();
     top();
     setcolor(12);
    setbkcolor(BLUE);
    settextstyle(0,0,9);
    outtextxy(490,150,"Help");
    outtextxy(300,320,"Yourself!!!");
    while(!kbhit());
    home();
    recommend(10,11);
}
示例#4
0
void thank()
{
    closegraph();
    initwindow(1275,700);
    setfillstyle(1,1);
    floodfill(1,1,1);
    settextstyle(1,0,7);
    setcolor(10);
    setbkcolor(1);
    outtextxy(70,250,"Thankyou for the Purchase");
    delay(3000);
    home();
    recommend(10,11);
}
示例#5
0
void TABLE::recommendID(char* ID)
{
	priority_queue<IDinfor, vector<IDinfor>, Compare> rID;
	vector<IDinfor> print_data;
	for (int i = 1; i < NAMEMAX; i++)
		recommend(ID_table[i], rID, ID);


	for (int i = rID.size(); i > 0; i--){
		print_data.push_back(rID.top());
		rID.pop();
	}
	
	//sort(print_data.begin(), print_data.end(), cmp);
	printf("ID %s not found, ", ID);
	for (int i = print_data.size() - 1; i >= 0; i--)
		printf("%s%c", print_data[i].str, (i > 0)? ',':'\n');
};
void CT()
{
     closegraph();
    top();
    setcolor(12);
    setbkcolor(BLUE);
    settextstyle(0,0,5);
    outtextxy(170,30,"Copyright and Trademark");
    
    setcolor(10);
    settextstyle(0,0,2);
    outparaxy(30,120,20,"V-ROK is trademarks or registered trademarks of ROX Computer Entertainment Inc. All rights reserved.");
    outparaxy(30,190,20,"ROX, Memory Stick Duo,Memory Stick PRO Duo, MagicGate, Blu-ray Disc and BD are trademarks or registered trademarks of ROX Corporation. All rights reserved.");
    outparaxy(30,270,20,"EyeToy, SingStar, Buzz! and  are trademarks or registered trademarks of ROX Computer Entertainment India. All rights reserved.");
    outparaxy(30,350,20,"All titles, content, publisher names, trademarks, artwork, and associated imagery are trademakes and/or copyright material of their respective owners. All rights reserved.");
    outparaxy(30,420,20,"Website ©2011 ROX Computer Entertainment India.");
    
    while(!kbhit());
    home();
    recommend(10,11);
}