Exemple #1
0
void DarkGDK()

{

	//Set window title
	dbSetWindowTitle("Good-Bye Chef");

	//Load image
	dbLoadBitmap("chef2.jpg", 1);

	//Display image
	dbCopyBitmap(1, 0);
 
	//Wait for user to press a key
	dbWaitKey();

	//Blur image every 1 second
	dbBlurBitmap(0, 3);
	dbWait(WAIT);

	dbBlurBitmap(0, 6);
	dbWait(WAIT);

	dbBlurBitmap(0, 9);

	//Fade image every 1 second
	dbFadeBitmap(0, 75);
	dbWait(WAIT);

	dbFadeBitmap(0, 50);
	dbWait(WAIT);

	dbFadeBitmap(0, 25);
	dbWait(WAIT);

	dbFadeBitmap(0, 0);

	//Wait for user to press a key
	dbWaitKey();

}
Exemple #2
0
//设置障碍
void game_plant_move(double& after_move_x, double& after_move_y)
{
	dbLoadImage("image\\Tallnut_body.png",80);
	int x,y;
	if(mouseFullClick(x,y))
	{
		after_move_x=x;
		after_move_y=y;
		dbSprite(20,x-99/2,y-146/2,80);
		dbSetSpritePriority(20,99);
		dbWait(100);
	}
}
Exemple #3
0
void world::dimArea(char interval[], void *classPointer) {
	int timeInterval = atoi(interval);
	int *currentXCord = static_cast<world*>(classPointer)->currentX; //Get our x coordinate from our class
	int *currentYCord = static_cast<world*>(classPointer)->currentY; //Get our y coordinate from our class
	int numberOfSpritesPlus1 = (static_cast<world*>(classPointer)->numOfSprites)+1;
	int numberOfImagesPlus1 = (static_cast<world*>(classPointer)->numOfImages)+1;

	dbSyncOn   ( );
	dbSyncRate ( 60 );
	dbLoadImage("background.png",numberOfImagesPlus1);
	dbSprite(numberOfSpritesPlus1,0,0,numberOfImagesPlus1);
	dbPlaySound(3);

	for(int i = 0; i < 255 && LoopGDK(); i+=5) { //Make our screen slightly darker each time. The speed is controlled by the timeInterval variable.
		static_cast<world*>(classPointer)->updateWorld(*currentXCord,*currentYCord);
		dbSetSpriteAlpha(numberOfSpritesPlus1,i);
		dbPasteSprite(numberOfSpritesPlus1,0,0);
		dbWait(timeInterval);
		dbSync();
	}

	for(int i = 0; i <= 100 && LoopGDK(); i+=5) { //Keep out screen dark for a little bit
		static_cast<world*>(classPointer)->updateWorld(*currentXCord,*currentYCord);
		dbWait(timeInterval);
		dbSync();
	}

	for(int i = 255; i >= 0 && LoopGDK(); i-=5) { //Now make our screen lighter so we can see again.
		static_cast<world*>(classPointer)->updateWorld(*currentXCord,*currentYCord);
		dbSetSpriteAlpha(numberOfSpritesPlus1,i);
		dbPasteSprite(numberOfSpritesPlus1,0,0);
		dbWait(timeInterval);
		dbSync();
	}

}
Exemple #4
0
void world::changeState(char triggerName[], void *classPointer) {
	int (*objectsPntr)[60][2][2] = &(static_cast<world*>(classPointer)->objects); //So basically we make a pointer that points to a 3 dimensional array (an array of arrays that have arrays inside of them) of [60][2][2]...

	//Now that we have a simple pointer(Which is very small and efficient) to our large multidimensional array, we can now use it later for our changing of the state.

	eventType (*eventsPntr)[60] = &(static_cast<world*>(classPointer)->events); //Make a pointer for our events array

	int *currentXCord = static_cast<world*>(classPointer)->currentX;
	int *currentYCord = static_cast<world*>(classPointer)->currentY;	

	for(int i = 0; i < 60; i++) { //We shuffle through our events array of 60 to see if we can find a match
		if(strcmp((*eventsPntr)[i].reference,triggerName) == 0) { //We need to do: (*eventsPntr)[i].reference for a very simple reason. If it wasn't an array, we could easily use a ->. This is used for pointers of a struct after all. Our array requires the actual value at that memory location though. Now we can do our indexes that we wanted.
			for(int j = 0; j < 60; j++) { //We found a matching event with the required name! Now lets use our number to find it in our objects array.
				if( ((*eventsPntr)[i].x1 == (*objectsPntr)[j][0][0]) && ((*eventsPntr)[i].y1 == (*objectsPntr)[j][0][1]) && ((*eventsPntr)[i].x2 == (*objectsPntr)[j][1][0]) && ((*eventsPntr)[i].y2 == (*objectsPntr)[j][1][1]) ) { //Lets see if we have a match here, between our event coords and our object coords!
							if(strcmp(triggerName,"roomDoor") == 0) {
								if((*objectsPntr)[j][1][0] == ((*objectsPntr)[j][0][0] + 35)) { //So if there's a difference of 35 on our x cords (The door is closed), do our first change:
									if(*currentXCord <= ((*objectsPntr)[j][0][0] + 5)) { //Let's move them out of they way so they don't get stuck in the door.
										*currentXCord = ((*objectsPntr)[j][0][0] + 6);
									}
									dbSprite(34,185,98,25); //Load our new door
									dbSizeSprite(34,6,30);
									(*objectsPntr)[j][1][0] = ((*objectsPntr)[j][0][0] + 5); //Change our object x cord by 5
									(*objectsPntr)[j][1][1] = ((*objectsPntr)[j][0][1] + 30);//Change our object y cord by 30
									(*eventsPntr)[i].x2 = ((*eventsPntr)[i].x1 + 5); //Change our event x cord by 5
									(*eventsPntr)[i].y2 = ((*eventsPntr)[i].y1 + 30); //change our event y cord by 30
									dbPlaySound(1);
								}

								else {  //else, do our second.
									if((*currentYCord <= ((*objectsPntr)[j][0][1] + 12)) && ((*currentYCord+32) >= ((*objectsPntr)[j][0][1] + 12))) { //If they're in the way of the door:
										*currentYCord = ((*objectsPntr)[j][0][1] + 13);
									}
									dbSprite(34,185,98,24); //Now we load our new door
									dbSizeSprite(34,35,12);
									(*objectsPntr)[j][1][0] = ((*objectsPntr)[j][0][0] + 35);
									(*objectsPntr)[j][1][1] = ((*objectsPntr)[j][0][1] + 12);
									(*eventsPntr)[i].x2 = ((*eventsPntr)[i].x1 + 35);
									(*eventsPntr)[i].y2 = ((*eventsPntr)[i].y1 + 12);
									dbPlaySound(2);
								}
							}//End of our roomDoor event
				}
			}
		}
	}
	dbWait(300);//To make sure this function doesn't trigger multiple times when hitting the space bar, we need to add a delay
}
void end()

{

	//Clear screen
	dbCLS();

	//Set text size
	dbSetTextSize(24);

	//Congrats
	dbCenterText(S_WIDTH / 2, S_HEIGHT / 2, "CONGRATULATIONS!");

	//Wait three seconds, then close
	dbWait(3000);

}
Exemple #6
0
void DarkGDK ( void )
{
	loadSettings();
	loadResources();

	//ASTEROID LOADED OBJECTS
	Large_Roid loadLarge(1);
	Big_Roid loadBig(1);
	Medium_Roid loadMedium(1);
	Small_Roid loadSmall(1);
	Tiny_Roid loadTiny(1);

	Ship *player = new Jet;

	Asteroid * roids[NUM_ASTEROIDS];
	setAsteroids(roids, NUM_ASTEROIDS);

	dbMakeObjectSphere(MACH_GUN_FIRE, 2);
	dbTextureObject(MACH_GUN_FIRE, MACH_GUN_FIRE);


	while ( LoopGDK ( ) )
	{
		astroReset(roids, NUM_ASTEROIDS);
		astroidPhysics(roids, NUM_ASTEROIDS);
		collision(roids, NUM_ASTEROIDS, player);
		player->moveShip();

		

		pause();
		if(dbSpaceKey())
		{
			dbWait(1000);
		}
		dbSync ( );
	}
	


	memoryLeak();
	return;
}
Exemple #7
0
void DarkGDK()
{
	//for test
	dbSetDisplayMode(1000,600,dbScreenDepth());

	double after_move_x=980, after_move_y=290;
	double p_after_move_x=0, p_after_move_y=0;
	int tempx=0;
	
	while (LoopGDK())
	{
		game_zombie_move(after_move_x,after_move_y,tempx);
		tempx++;
		game_plant_move(p_after_move_x,p_after_move_y);
		dbWait(10);
	
		
	}

}
Exemple #8
0
void world::endingScreen(void *classPointer) { //Like a large version of our printText function
	dbWait(500);
	char messageTotal[1000] = "Player...";
	char messageTemp[100] = "";
	int totalLength = strlen(messageTotal);
	int tempLength = 0;
	int iteration = 0;
	int numberCharsToEnd = 0;
	dbSetTextSize(52);
	for(tempLength; LoopGDK() && tempLength <= totalLength; tempLength++) {
		messageTemp[tempLength] = messageTotal[tempLength];
		dbWait(200);
		dbText(200,80,messageTemp);
		dbSync();
	}
	while(dbKeyState(57) != 1) { //Show the message, with the blinking period controlled by your computer time. Waiting for you to press space.
		if((dbTimer()/1000) % 2 == 1)
		{
			messageTemp[tempLength-2] = '\0';
		}
		else {
			messageTemp[tempLength-2] = '.';
		}
		dbCLS();
		dbWait(40);
		dbText(200,80,messageTemp);
		dbSync();
	}
	dbCLS();
	strcpy(messageTotal,"Thank you very much for playing. This game has been coded in C++, one of my favorite languages, and it has been a blast to program. I hope you have enjoyed it as much as I have. I also wish to congratulate you on finding out the password. Either you're amazing at guessing, or you found the secret note... What an odd place to put it too...");
	totalLength = strlen(messageTotal);
	for(int i = 0; i <= totalLength; i++) { //Loop through our main message
		if(((i+1)+numberCharsToEnd) % 26 == 0) { //So if the next character in the string is going to hit the edge (if it's divisible by 26 with no remainders) (Plus our difference which we'll talk about later.
			if(messageTotal[i+1] == ' ') { //first check if our next character is a space. If so, then just change it out for a \n
				messageTotal[i+1] = '\n';
			}

			else { //I guess it wasn't. Now let's check to see if there's a space behind us, at most 26 characters away. Let's also make sure that we stop if we reach 0. (Then no spaces behind us)
				for(int j = i; j >= 0 && iteration < 26; j--) {
					if(messageTotal[j] == ' ') { //We found a character that's both a space and within our limits! Now we make it \n, tell the program that we found one by setting iteration to 0,
												 //And add the difference between our previous end of line, to our numberCharsToEnd variable.
						messageTotal[j] = '\n';
						iteration = 0;
						numberCharsToEnd = ((i+1)+numberCharsToEnd)-(j+1); //The j-1 makes it so our lines align properly.
						break;
					}
					
					iteration++; //we didn't find any spaces this round, so let's keep looking. Since I'm looking further, I increment my variable to say how far back I'm looking. (remember 26)
				}
			}

			if(iteration != 0) { //It looks like we didn't find any spaces. I guess we'll have to chop the word in half so it doesn't run off of the page (our only option)

				for(int j = totalLength; j >= i; j--) { //Move everything over to the right by 1.
					messageTotal[j+1] = messageTotal[j];					
				}
				totalLength++; //Remember: by moving everything over by 1, we made the string size 1 larger.
				messageTotal[i] = '\n'; //now insert our \n where we have our emprty space from moving everything over. (Technically our first duplicated space)
				iteration = 0; //Now, make sure to reset our iteration variable
			}
		}
	}//End for i
	for(int i = 500; i > -720 && LoopGDK(); i-=2) { //Move our text up the screen.
		dbCLS();
		dbWait(40);
		dbText(0,i,messageTotal);
		dbSync();
	}
	strcpy(messageTotal,"Thank you for playing");
	for(int i = 0; i <= 255 && LoopGDK(); i+=5){ //Fade our message in
		dbInk(dbRGB(i,i,i),dbRGB(0,0,0));
		dbCLS();
		dbWait(40);
		dbCenterText(310,150,messageTotal);
		dbSync();
	}
	for(int i = 255; i >= 0 && LoopGDK(); i-=5){ //Fade our message out
		dbInk(dbRGB(i,i,i),dbRGB(0,0,0));
		dbCLS();
		dbWait(40);
		dbCenterText(310,150,messageTotal);
		dbSync();
	}
	*(static_cast<world*>(classPointer)->finishedPntr) = 1; //You WON!!! YAY! Now let's tell the main darkGDK function that you won.

}
Exemple #9
0
void world::passGuess(char triggerName[], void *classPointer) { 

	int *currentXCord = static_cast<world*>(classPointer)->currentX;
	int *currentYCord = static_cast<world*>(classPointer)->currentY;
	int numbers = 0;
	char messageTotal[150] = "Well you seem to have the\nurge to leave. Why not stay\nfor a bit though? If you\ntruly want to go, then\nsimply guess the password:"******"";
	int spaceBar = 0;
	int correctPassword = 0;

	dbSyncOn   ( );
	dbSyncRate ( 60 );

	dbLoadImage("textBackground.png",numberOfImages+1);
	dbLoadImage("passwordBackground.png",numberOfImages+2);

	while(LoopGDK() && numbers <= 6){ //Now we have to sustain our environment again.
		dbWait(10); //How quick the message is typed
		//dbCenterText(30,90,dbStr(dbMouseX()));
		//dbCenterText(30,120,dbStr(dbMouseY()));

		static_cast<world*>(classPointer)->updateWorld(*currentXCord,*currentYCord); //Let's send our xCord and yCord that we got to our class.
		dbPasteImage((numberOfImages+1),385,0);
		dbPasteImage((numberOfImages+2),405,200);


		if(messageCharLength < totalLength) { //Just like in our printText function
			messageTemp[messageCharLength] = messageTotal[messageCharLength];
			messageTemp[messageCharLength+1] = '\0';
			messageCharLength++;
		}

		if(dbMouseClick() == 1) {
			if((dbMouseX() >= 449) && (dbMouseX() <= 472) && (dbMouseY() >= 273) && (dbMouseY() <= 297)) { //If our mouse is over the 1 button
				strncat(passwordInput,"1",1);
				numbers++;
				dbPlaySound(12);
			}

			else if((dbMouseX() >= 500) && (dbMouseX() <= 523) && (dbMouseY() >= 273) && (dbMouseY() <= 297)) { //If our mouse is over the 2 button
				strncat(passwordInput,"2",1);
				numbers++;
				dbPlaySound(12);
			}

			else if((dbMouseX() >= 552) && (dbMouseX() <= 575) && (dbMouseY() >= 273) && (dbMouseY() <= 297)) { //If our mouse is over the 3 button
				strncat(passwordInput,"3",1);
				numbers++;
				dbPlaySound(12);
			}

			else if((dbMouseX() >= 449) && (dbMouseX() <= 472) && (dbMouseY() >= 306) && (dbMouseY() <= 330)) { //If our mouse is over the 4 button
				strncat(passwordInput,"4",1);
				numbers++;
				dbPlaySound(12);
			}

			else if((dbMouseX() >= 500) && (dbMouseX() <= 523) && (dbMouseY() >= 306) && (dbMouseY() <= 330)) { //If our mouse is over the 5 button
				strncat(passwordInput,"5",1);
				numbers++;
				dbPlaySound(12);
			}

			else if((dbMouseX() >= 552) && (dbMouseX() <= 575) && (dbMouseY() >= 306) && (dbMouseY() <= 330)) { //If our mouse is over the 6 button
				strncat(passwordInput,"6",1);
				numbers++;
				dbPlaySound(12);
			}

			else if((dbMouseX() >= 449) && (dbMouseX() <= 472) && (dbMouseY() >= 339) && (dbMouseY() <= 363)) { //If our mouse is over the 7 button
				strncat(passwordInput,"7",1);
				numbers++;
				dbPlaySound(12);
			}

			else if((dbMouseX() >= 500) && (dbMouseX() <= 523) && (dbMouseY() >= 339) && (dbMouseY() <= 363)) { //If our mouse is over the 8 button
				strncat(passwordInput,"8",1);
				numbers++;
				dbPlaySound(12);
			}

			else if((dbMouseX() >= 552) && (dbMouseX() <= 575) && (dbMouseY() >= 339) && (dbMouseY() <= 363)) { //If our mouse is over the 9 button
				strncat(passwordInput,"9",1);
				numbers++;
				dbPlaySound(12);
			}

			else if((dbMouseX() >= 500) && (dbMouseX() <= 523) && (dbMouseY() >= 372) && (dbMouseY() <= 396)) { //If our mouse is over the 0 button
				strncat(passwordInput,"0",1);
				numbers++;
				dbPlaySound(12);
			}
			dbWait(300);
		}

		if(numbers == 7) { //Now let's create a local instance of our world for the new mesage
			strcpy(messageTemp,"");
			if(strcmp(passwordInput,"1433434") == 0) {//Now let's check to see if they got the password correct
				strcpy(messageTotal,"Congratulations! That's\nthe right password!");
				correctPassword++;
				dbInk(dbRGB(0,255,0),dbRGB(0,0,0));
				dbPlaySound(14);
			}
			else {
				strcpy(messageTotal,"Sorry, but that's not the\npassword. Please try again.");
				dbInk(dbRGB(255,0,0),dbRGB(0,0,0));
				dbPlaySound(13);
			}
			totalLength = strlen(messageTotal);
			messageCharLength = 0;
			while(LoopGDK() && spaceBar == 0) {
				dbWait(10);
				static_cast<world*>(classPointer)->updateWorld(*currentXCord,*currentYCord); //Let's send our xCord and yCord that we got to our class.
				dbPasteImage((numberOfImages+1),385,0);
				dbPasteImage((numberOfImages+2),405,200);
				
				if(messageCharLength < totalLength) { //Lets loop through our message again.
					messageTemp[messageCharLength] = messageTotal[messageCharLength];
					messageTemp[messageCharLength+1] = '\0'; 
					messageCharLength++;
				}
				if(dbKeyState(57) == 1) {
					spaceBar++;
				}

				dbSetTextSize(36);
				if(correctPassword == 1) {
					dbCenterText(512,12,"Correct");
					dbCenterText(512,42,"Password!:");

				}
				else {
					dbCenterText(512,12,"Incorrect");
					dbCenterText(512,42,"Password:"******"Guess The");
			dbCenterText(512,42,"Password:");
			dbSetTextSize(12);
			dbText(395,85,messageTemp);
			dbSetTextSize(36);
			dbText(455,220,passwordInput);
			dbSync();
		}
	}
	if(correctPassword == 1){
		for(int i = 0; i <= 100; i++) {
			dbDeleteSprite(i);
			dbSync();
		}
		endingScreen(classPointer); //Go to the ending screen, since you won!

	}
	dbWait(300);	
}
Exemple #10
0
void world::printText(char text[], void *classPointer) {
	char title[30]; //Our title for the object.
	char titleRow1[15] = "";
	char titleRow2[15] = "";
	char messageTotal[700]; //Our entire message
	char messageTemp[700]; //Our temp message that is printed to the screen.
	int *currentXCord = static_cast<world*>(classPointer)->currentX; //Our way to get the current xCord of our main class, using a static function. (Uses a class pointer)
	int *currentYCord = static_cast<world*>(classPointer)->currentY;
	int page = 0; //What page are we on? (Index numbered)
	int messageCharLength = 0; //What's the length of our temporary message?
	int totalLength; //The length of our entire message
	int iteration = 0; //Used later to see if we were able to find a space at the end of our text line.
	int numberCharsToEnd = 0; //How many characters are between our \n and the original end of the line?
	char *time = dbGetTime(); //dbGetTime returns the char pointer of a copy of the original time
	*(time+2) = '\0'; //Just an example. Same as "time[2] = '\0'" (educational purposes, and equivalent)
	int hour = atoi(time);
	int numberOfImagesPlus1 = (static_cast<world*>(classPointer)->numOfImages)+1;

	dbSyncOn   ( );
	dbSyncRate ( 60 );


	dbLoadImage("textBackground.png",numberOfImagesPlus1);
	
	if(strcmp(text,"bed") == 0) { //If our event text matches the given text
		strcpy(title,"Bed:");
		strcpy(messageTotal,"I\'m pretty tired. It\'s been a very long ");
		if(hour <= 12) {
			strncat(messageTotal,"morning. ", 9);
		}
		else if(hour >= 13 && hour <= 18) {
			strncat(messageTotal,"day. ",5);
		}
		else {
			strncat(messageTotal,"night. ", 7);
		}
		strncat(messageTotal,"I think I'm going to just take a rest...",40);
		
	}

	else if(strcmp(text,"characterTV") == 0) {
		strcpy(title,"Character\'s TV:");
		strcpy(messageTotal,"Oh. Awesome. My favorite show is on!");
		dbPlaySound(4);
	}

	else if(strcmp(text,"characterComputer") == 0) {
		strcpy(title,"Character\'s Computer:");
		strcpy(messageTotal,"Hm. It\'s been forever since I have done anything productive on here. Where is my flash drive?");
		dbPlaySound(7);
	}

	else if(strcmp(text,"familyTV") == 0) {
		strcpy(title,"Family TV:");
		strcpy(messageTotal,"Yes! Just in time to watch my favorite movie!");
		dbPlaySound(5);
	}

	else if(strcmp(text,"familyComp") == 0) {
		strcpy(title,"Family Computer:");
		strcpy(messageTotal,"What? There's a message from the creator of this game on my facebook: \"Hello. I hope you\'re enjoying the game. I put much time this game... Not sweat though. Programming doesn't usually make you sweat, thank goodness... As I was saying though, hope you're having fun!\"");
		dbPlaySound(6);
	}

	else if(strcmp(text,"tableFront") == 0) {
		strcpy(title,"Living Room Table:");
		strcpy(messageTotal,"The tiles are very smooth, and cold to the touch. Each one has its own wavy pattern to it, as the tiles rise and lower at seemingly random spots. Each appears as if it's slightly warped.");

	}

	else if(strcmp(text,"tableBack") == 0) {
		strcpy(title,"Living Room Table:");
		strcpy(messageTotal,"Where's the TV remote... Oh. Here it is. Now what do I watch though?");
	}

	else if(strcmp(text,"smallTable") == 0) {
		strcpy(title,"Small Table:");
		strcpy(messageTotal,"I'm not actually sure what goes here... poor little table.");
	}

	else if(strcmp(text,"couch") == 0) {
		strcpy(title,"Living Room Couch:");
		strcpy(messageTotal,"This is such a comfy couch. It\'s all cushiony and stuff. The pillows are awesome too. What a nice couch.");
	}

	else if(strcmp(text,"chair") == 0) {
		strcpy(title,"Living Room Chair:");
		strcpy(messageTotal,"The chair seems to radiate fall. It has various patterns, each created by an array of leaves changing their colors. The couch as a whole has a slight orange tint to it, from all of the various leaves... So very poetic!");
	}
	
	else if(strcmp(text,"mainCloset") == 0) {
		strcpy(title,"Living Room Closet:");
		strcpy(messageTotal,"There are several vaious objects behind the door, for no one to see. Not even I know what\'s behind there!");
	}

	else if(strcmp(text,"kitchnTable") == 0) {
		strcpy(title,"Kitchen Table:");
		strcpy(messageTotal,"The kitchen table has several various types of food on it. There are also four plates set out, each at its seemingly designated spot. It must be time for ");
		if(hour <= 11) {
			strncat(messageTotal,"breakfast. ", 11);
		}
		else if(hour >= 12 && hour <= 16) {
			strncat(messageTotal,"lunch. ",7);
		}
		else {
			strncat(messageTotal,"dinner. ", 8);
		}
	}

	else if(strcmp(text,"counter") == 0) {
		strcpy(title,"Kitchen Counter:");
		strcpy(messageTotal,"The counter has a few food items on it, each varying greatly from the other. They almost all seem to be focused around ");
		if(hour <= 11) {
			strncat(messageTotal,"breakfast ", 10);
		}
		else if(hour >= 12 && hour <= 16) {
			strncat(messageTotal,"lunch ",6);
		}
		else {
			strncat(messageTotal,"dinner ", 7);
		}
		strncat(messageTotal,"though. It makes sense, considering the time of day.",52);
	}

	else if(strcmp(text,"kitchnSink") == 0) {
		strcpy(title,"Kitchen Sink:");
		strcpy(messageTotal,"It's so shiny, I can almost see my reflection!...Wow. What a nice looking person!");
		dbPlaySound(8);
	}

	else if(strcmp(text,"fridge") == 0) {
		strcpy(title,"Fridge:");
		strcpy(messageTotal,"There are several different types of food in here...What? There's a note inside: \"Hello player. I hope you're enjoying this level. If this was the first thing that you went to though, I don\'t know what to tell you. Otherwise, congrats on exploring! By the way, remember the number 1433434...\"");
		dbPlaySound(9);
	}

	else if(strcmp(text,"stove") == 0) {
		strcpy(title,"Stove:");
		strcpy(messageTotal,"The stove is off. Good. Those pesky things can get hot sometimes!");
	}

	else if(strcmp(text,"upCloset") == 0) {
		strcpy(title,"Hallway Closet:");
		strcpy(messageTotal,"*Try to turn the door knob* Darn it. It's locked!");
		dbPlaySound(10);
	}

	else if(strcmp(text,"upperRoom") == 0) {
		strcpy(title,"Relative's Room:");
		strcpy(messageTotal,"*Get ready to turn door knob* Well... maybe I should wait to go in here. There's so much more to look at!");
	}

	else if(strcmp(text,"bathroom") == 0) {
		strcpy(title,"Bathroom:");
		strcpy(messageTotal,"Um...I'm not quite sure if I should narrate this... Let's say no for right now...");
	}

	else if(strcmp(text,"lowCloset") == 0) {
		strcpy(title,"Hallway Closet:");
		strcpy(messageTotal,"*Turn the door knob, but can't open the door* What? Seems like something is holding the door back... weird...");
		dbPlaySound(11);
	}



	////////////////////
	//
	//
	//Below is the main part of this function.
	//
	//
	////////////////////








	totalLength = strlen(messageTotal);

	//We're going to perform an initial check through our main message. This will allow us to already have all of the '\n's where they need to be, so we can easily
	//print our the message later. (Without any checking)

	for(int i = 0; i <= totalLength; i++) { //Loop through our main message
		if(((i+1)+numberCharsToEnd) % 29 == 0) { //So if the next character in the string is going to hit the edge (if it's divisible by 29 with no remainders, plus our difference which we'll talk about later.)
			if(messageTotal[i+1] == ' ') { //first check if our next character is a space. If so, then just change it out for a \n
				messageTotal[i+1] = '\n';
			}

			else { //I guess it wasn't. Now let's check to see if there's a space before this, at most 29 characters away. Let's also make sure that we stop if we reach 0. (That means we reached the beginning of the line, and there are no spaces in front of us)
				for(int j = i; j >= 0 && iteration < 29; j--) {
					if(messageTotal[j] == ' ') { //We found a character that's both a space and within our limits! Now we make it \n, tell the program that we found one by setting iteration to 0,
												 //And add the difference between our previous end of line, to our numberCharsToEnd variable.
						messageTotal[j] = '\n';
						iteration = 0;
						numberCharsToEnd = ((i+1)+numberCharsToEnd)-(j+1); //The j-1 makes it so our lines align properly.
						break;
					}
					
					iteration++; //we didn't find any spaces at this character, so let's keep looking. Since I'm looking further, I increment my variable to say how far back I'm looking. (remember 29 max!)
				}
			}

			if(iteration != 0) { //It looks like we didn't find any spaces. I guess we'll have to chop the word in half so it doesn't run off of the page (our only option)

				for(int j = totalLength; j >= i; j--) { //Move everything over to the right by 1.
					messageTotal[j+1] = messageTotal[j];					
				}
				totalLength++; //Remember: by moving everything over by 1, we made the string size 1 larger.
				messageTotal[i] = '\n'; //now insert our \n where we have our emprty space from moving everything over. (Technically our first duplicated space)
				iteration = 0; //Now, make sure to reset our iteration variable.
			}
		}
	}//End for i
	messageTotal[totalLength] = '\0'; //After all of that, we need to remember to have a \0 at the end of our string.

	if(strlen(title) > 15) { //If our title's going to run off of the page, we need to break it in half.
		char *spaceLocation = strchr(title,' ');
		while(strchr(spaceLocation + 1 ,' ') != NULL && (strchr(spaceLocation + 1 ,' ')-title) <= 15) { //Try and make our space cut-off as far on the first line as possible (get as much on the first line as we can)
			spaceLocation = strchr(spaceLocation + 1, ' ');
		}
		strncpy(titleRow1,title,spaceLocation-title); //Copy our first title row
		titleRow1[spaceLocation-title] = '\0';
		strncpy(titleRow2,title+(spaceLocation-title)+1,(strlen(title)-(spaceLocation-title))); //Now our second title row

	}

	dbWait(400);
	while(LoopGDK() && page < 1){ //Now we have to sustain our environment by pasting our images and sprites. Otherwise, they wouldn't stay on the screen as we type our characters.
		dbWait(10); //How quick the message is typed. (the delay)


		static_cast<world*>(classPointer)->updateWorld(*currentXCord,*currentYCord); //Let's send our xCord and yCord that we got to our class.
		dbPasteImage(numberOfImagesPlus1,385,0);

		if(dbKeyState(57) == 1) { //Did we press the space bar?
			dbWait(400);
			page++;
		}

		if(messageCharLength < totalLength) { //Now since we did all of our computation at the beginning, we can now just add characters to the string every time instead of looping through it.
			messageTemp[messageCharLength] = messageTotal[messageCharLength];
			messageTemp[messageCharLength+1] = '\0'; /*
													 NOTE: Since we check to make sure that our object is less than the total length, once it's equal to it, we have already added the \0 ahead of it! (the [messageCharLength+1] part)
													 */
			messageCharLength++;
		}

		if(titleRow1[0] != 0) { //If we had to split our title up
			dbSetTextSize(36);
			dbCenterText(512,12,titleRow1);
			dbCenterText(512,42,titleRow2);
			dbSetTextSize(12);
			dbText(395,85,messageTemp);

		}
		else {
			dbSetTextSize(36);
			dbCenterText(512,12,title);
			dbSetTextSize(12);
			dbText(395,55,messageTemp);
		}
		dbSync();
	}
	dbWait(400);
}