/*
SYSTEMTIME time;
GetLocalTime(&time);
获取时间,wYear,wMonth...
time_t nowtime;
time(&nowtime);
获取1970年1月1日0点0分0秒到现在经过的秒数 
system("exit")
退出程序 
*/
#include<bits/stdc++.h>
#include<windows.h>
#include<Windows.h>
#include<conio.h>
#include<ctime>
#include<stdio.h>
#include<time.h>
#define int long long
#define ptc putchar
#define getch _getch
using namespace std;
void slowout(string s,int x,int R,int G,int B,bool flag=0){
	if(!flag)
	{
		for(int i=0;i<s.size();i++)
		{
			Sleep(x);
			wprintf(L"\x1b[38;2;%d;%d;%dm"+s[i],R,G,B);
		}
	}
	else 
	{
		for(int i=0;i<s.size();i++)
		{
			Sleep(x);
			ptc(s[i]);
		}
	}
}
const int MOD1=11451419198101217,MOD2=19198101145141921,MOD3=11451419198250721;
bool lg=0;
string ntos(int x){
	string s;
	while(x)
	{
		s=(char)((x%10)+48)+s;
		x/=10;
	}
	return s;
}
void title(char s[]){
	SetConsoleTitleA(s);
}
char lower_letter(char ch){
	return (ch>='A'&&ch<='Z'?ch-'A'+'a':ch);
}
string lower_string(string s){
	for(int i=0;i<s.size();i++)
	{
		if(s[i]>='A'&&s[i]<='Z')s[i]=s[i]-'A'+'a';
	}
	return s;
}
void out(string s,int x=20,int lv=0){
	if(lv==0)slowout(s,x,255,255,255,1);
	if(lv==1)slowout(s,x,128,239,111);
	if(lv==2)slowout(s,x,255,230,93);
	if(lv==3)slowout(s,x,72,171,232);
	if(lv==4)slowout(s,x,190,108,237);
	if(lv==5)slowout(s,x,238,106,114);
	if(lv==6)slowout(s,x,67,227,216);
	if(lv==7)slowout(s,x,242,116,169);
}
void setpos(int x,int y){
	HANDLE hOutput=GetStdHandle(STD_OUTPUT_HANDLE);
	COORD coo;
	coo.X=x;
	coo.Y=y;
	SetConsoleCursorPosition(hOutput, coo);
}
void hidecursor(){
	CONSOLE_CURSOR_INFO cursor_info={1,0};
	SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE),&cursor_info);
}
void setsize(int col, int row){
	char cmd[64];
	sprintf(cmd,"mode con cols=%d lines=%d",col,row);
	system(cmd);
	SetWindowLongPtrA(GetConsoleWindow(), GWL_STYLE, GetWindowLongPtrA(GetConsoleWindow(),GWL_STYLE)& ~WS_SIZEBOX & ~WS_MAXIMIZEBOX & ~WS_MINIMIZEBOX);
	HWND hwnd=GetConsoleWindow();
	HMENU hmenu=GetSystemMenu(hwnd, false);
	RemoveMenu(hmenu,SC_CLOSE,MF_BYCOMMAND);
	LONG style=GetWindowLong(hwnd, GWL_STYLE);
	style&=~(WS_MINIMIZEBOX);
	SetWindowLong(hwnd,GWL_STYLE,style);
	SetWindowPos(hwnd,HWND_TOP,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);
	ShowWindow(hwnd,SW_SHOWNORMAL);
	DestroyMenu(hmenu);
	ReleaseDC(hwnd,NULL);
}
int petal_number;
struct petal_node{
	string name;
	int id;
	int num[8];
}petal[101];
struct hash_pair{
	int hash1,hash2,hash3;
	hash_pair operator+(const hash_pair x) const
	{
		hash_pair y;
		y.hash1=(x.hash1+hash1)%MOD1;
		y.hash2=(x.hash2+hash2)%MOD2;
		y.hash3=(x.hash3+hash3)%MOD2;
		return y;
	}
	hash_pair operator-(const hash_pair x) const
	{
		hash_pair y;
		y.hash1=(hash1-x.hash1+MOD1)%MOD1;
		y.hash2=(hash2-x.hash2+MOD1)%MOD2;
		y.hash3=(hash3-x.hash3+MOD1)%MOD2;
		return y;
	}
	bool operator !=(const hash_pair x) const
	{
		return !(hash1==x.hash1&&hash2==x.hash2&&hash3==x.hash3);
	}
	bool operator ==(const hash_pair x) const
	{
		return (hash1==x.hash1&&hash2==x.hash2&&hash3==x.hash3);
	}
};
hash_pair mul_hash_pair(int x,hash_pair hsh){
	hash_pair ret;
	for(int i=1;i<=x;i++)
	{
		ret=ret+hsh;
	}
	return ret;
}
hash_pair make_hash_pair(int x){
	hash_pair ret;
	ret.hash1=x%MOD1;
	ret.hash2=x%MOD2;
	ret.hash3=x%MOD3;
	return ret;
}
int map_number,mob_number;
int map_mob_number[101],map_mob[101][101];
string map_name[101];
string account_name;
string player_name;
string password;
hash_pair pwd_hash;
int inventory_petal[101][8];
int total_sign,total_exp,total_coin,total_diamond,total_rua_other,total_other_rua,total_area_trying,total_area_spot_trying,total_moai,total_boss_m,total_boss_u;
double total_explore_point;
int total_normal_gacha,total_pro_gacha,total_mega_gacha;
int total_petal_get[8],total_craft_broke[8],total_mob_beat[8];
bool mob_beat[101][8];
int player_coin,player_exp,player_diamond;
int player_skill_reload,player_skill_tree_exp,player_skill_tree_limit,player_skill_cash_cow,player_skill_luck_add,player_skill_rua_limit,player_skill_3x_rua_chance,player_skill_crit_chance,player_skill_boss_chance;
int player_reset_card;
struct slot_inventory{
	int rarity,id;
}slot[16];
string player_last_news;
bool player_achievement[81];
double main_world_progress,slime_world_progress,chest_world_progress,gacha_world_progress;
int player_now_area,player_last_area_spot;
int player_normal_gacha_ticket,player_pro_gacha_ticket,player_mega_gacha_ticket;
string collection_pre[1001],collection_suf[1001];
int collection_pre_number,collection_suf_number;
struct mob_node{
	string name;
	int id;
	int map_num;
	int map_id[101];
	int drop_num;
	string drop_name[101];
	int drop_id[101];
	int drop_rate[101][8][8];
	int def[8];
}mob[101];
hash_pair hash_string(string s){
	hash_pair ret;
	for(int i=0;i<s.size();i++){
		hash_pair now,add=make_hash_pair(s[i]);
		now=mul_hash_pair(131,ret);
		now=now+add;
		ret=now;
	}
	return ret;
}
string getpwd(){
	char pwd[101];
    char ch=0;
    int i=0;
    while(1){
        ch=getch();
        if(ch=='\r'){
            printf("\n");
            break;
        }
        if(ch=='\b'&&i>0){
            i--;
            printf("\b \b");
        }
        else if(isprint(ch)){
            pwd[i]=ch;
            printf("*");
            i++;
        }
    }
    pwd[i]=0;
    string ret;
    for(int j=0;j<i;j++){
    	ret=ret+pwd[j];
	}
	return ret;
}
bool init(){
	ifstream in1("game_data.ini");
	if (!in1){
		out("Download the game_data first!");
		return 0;					
	}
	in1>>petal_number;
	for(int i=1;i<=petal_number;i++){
		in1>>petal[i].name;
		in1>>petal[i].id;
		for(int j=1;j<=7;j++)
		{
			in1>>petal[i].num[j];
		}
	}
	in1>>map_number;
	for(int i=1;i<=map_number;i++){
		in1>>map_name[i];
	}
	in1>>mob_number;
	for(int i=1;i<=mob_number;i++){
		in1>>mob[i].name;
		in1>>mob[i].id;
		in1>>mob[i].map_num;
		for(int j=1;j<=mob[i].map_num;j++){
			in1>>mob[i].map_id[j];
			map_mob_number[mob[i].map_id[j]]++;
			map_mob[mob[i].map_id[j]][map_mob_number[mob[i].map_id[j]]]=mob[i].id;
		}
		in1>>mob[i].drop_num;
		for(int j=1;j<=mob[i].drop_num;j++){
			in1>>mob[i].drop_name[j];
			in1>>mob[i].drop_id[j];
			for(int k=1;k<=7;k++){
				for(int l=1;l<=7;l++){
					in1>>mob[i].drop_rate[j][k][l];
				}
			}
		}
		for(int j=1;j<=7;j++){
			in1>>mob[i].def[j];
		}
	}
}
void welcome(){
	setpos(20,3);
	out("Welcome",50);
	setpos(23,5);
	out("to",50);
	setpos(10,9);
	cout<<"***";
	setpos(10,10);
	cout<<"*  *";
	setpos(10,11);
	cout<<"***";
	setpos(10,12);
	cout<<"**";
	setpos(10,13);
	cout<<"* *";
	setpos(10,14);
	cout<<"*  *";
	Sleep(250);
	setpos(15,9);
	cout<<"*  *";
	setpos(15,10);
	cout<<"*  *";
	setpos(15,11);
	cout<<"*  *";
	setpos(15,12);
	cout<<"*  *";
	setpos(15,13);
	cout<<"*  *";
	setpos(15,14);
	cout<<" **";
	Sleep(250);
	setpos(20,9);
	cout<<" **";
	setpos(20,10);
	cout<<"*  *";
	setpos(20,11);
	cout<<"****";
	setpos(20,12);
	cout<<"*  *";
	setpos(20,13);
	cout<<"*  *";
	setpos(20,14);
	cout<<"*  *";
	Sleep(250);
	setpos(25,9);
	cout<<"***";
	setpos(25,10);
	cout<<"*  *";
	setpos(25,11);
	cout<<"***";
	setpos(25,12);
	cout<<"**";
	setpos(25,13);
	cout<<"* *";
	setpos(25,14);
	cout<<"*  *";
	Sleep(250);
	setpos(30,9);
	cout<<"*  *";
	setpos(30,10);
	cout<<"*  *";
	setpos(30,11);
	cout<<"*  *";
	setpos(30,12);
	cout<<"*  *";
	setpos(30,13);
	cout<<"*  *";
	setpos(30,14);
	cout<<" **";
	Sleep(250);
	setpos(35,9);
	cout<<" **";
	setpos(35,10);
	cout<<"*  *";
	setpos(35,11);
	cout<<"****";
	setpos(35,12);
	cout<<"*  *";
	setpos(35,13);
	cout<<"*  *";
	setpos(35,14);
	cout<<"*  *";
	setpos(40,14);
	cout<<"*";
	Sleep(250);
	setpos(42,9);
	cout<<"***";
	setpos(42,10);
	cout<<"*  *";
	setpos(42,11);
	cout<<"***";
	setpos(42,12);
	cout<<"**";
	setpos(42,13);
	cout<<"* *";
	setpos(42,14);
	cout<<"*  *";
	Sleep(250);
	setpos(47,9);
	cout<<"*  *";
	setpos(47,10);
	cout<<"*  *";
	setpos(47,11);
	cout<<"*  *";
	setpos(47,12);
	cout<<"*  *";
	setpos(47,13);
	cout<<"*  *";
	setpos(47,14);
	cout<<" **";
	Sleep(1000);
}
void language(){
	while(1){
		setpos(5,3);
		out("Please Set Your Language(E.English C.简体中文)",0);
		setpos(6,4);
		out("请选择你使用的语言(E.English C.简体中文)",0);
		char key=getch();
		key=lower_letter(key);
		if(key=='e')break;
		else if(key=='c'){
			lg=1;
			break;
		}
		system("cls");
	}
}
void login(){
	ifstream in("account.ini");
	if (!in){
		setpos(5,3);
		if(lg)out("你还没有一个账户!请先注册一个",10);
		else out("You don't have an account yet, please register one first",10);
		Sleep(300);
		system("cls");
		setpos(5,3);
		if(lg)out("用户名 (注册后不可更改,且登入时使用此名称,不可出现空格):",5);
		else out("Username (cannot be changed after registration, and must be used when logging in, don't add any spaces):",5);
		cin>>account_name;
		setpos(5,4);
		if(lg)out("昵称(注册后可更改,不可出现空格):",10);
		else out("Nickname (can be changed after registration, don't add any spaces):",5);
		cin>>player_name;
		while(1){
			setpos(5,5);
			if(lg)out("密码:",10);
			else out("Password:",10);
			string str1,str2;
			str1=getpwd();
			setpos(5,6);
			if(lg)out("重复密码:",10);
			else out("Repeat password:",10);
			str2=getpwd();
			if(str1==str2){
				password=str1;
				pwd_hash=hash_string(str1);
				break;
			}
			if(lg)out("两次密码不一样qwq,请重新输入",10);
			else out("The two passwords are different qwq, please re-enter",5);
			Sleep(500);
			system("cls");
			setpos(5,3);
			if(lg)out("用户名 (注册后不可更改,且登入时使用此名称,不可出现空格):"+account_name,5);
			else out("Username (cannot be changed after registration, and must be used when logging in, don't add any spaces):"+account_name,5);
			setpos(5,4);
			if(lg)out("昵称(注册后可更改,不可出现空格):"+player_name,10);
			else out("Nickname (can be changed after registration, don't add any spaces):\n"+player_name,5);
		}
		setpos(5,7);
		if(lg)out("注册成功,正在跳转qwq",10);
		else out("Registration successful, currently redirecting qwq\n",5);
		Sleep(500);
		return ;
	}
	else{
		
	}
}
void game(){
	welcome();
	system("cls");
	language();
	system("cls");
	login();
	
}
signed main(){
	HANDLE hOut=GetStdHandle(STD_OUTPUT_HANDLE);
    if(hOut==INVALID_HANDLE_VALUE)return GetLastError();
    DWORD dwMode=0;
    if(!GetConsoleMode(hOut,&dwMode))return GetLastError();
    dwMode|=0x0004;
    if(!SetConsoleMode(hOut,dwMode))return GetLastError();
	title("ruarua.ru");
	hidecursor();
	setsize(100,200);
	if(init())game();
	return 0;
}