You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			152 lines
		
	
	
		
			7.5 KiB
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			152 lines
		
	
	
		
			7.5 KiB
		
	
	
	
		
			PHP
		
	
| <?php
 | |
| /*
 | |
|  * Created on 31.05.2011
 | |
|  *
 | |
|  * @copyright (c) 2011 animegame.eu
 | |
|  * @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public Licence
 | |
|  *
 | |
|  */
 | |
| ?>
 | |
| 
 | |
| <?php
 | |
| function displayNPC($action, $task, $charid, $table, $page, $data){
 | |
| 	echo '<form action="'.$_SERVER['PHP_SELF'].'" method="POST">'."\n";
 | |
| 	echo "\t".'<input type="hidden" name="choose" value="npc"></input>'."\n";
 | |
| 	echo "\t".'<input type="hidden" name="charid" value="'.$charid.'"></input>'."\n";
 | |
| 	echo "\t".'<table width="80%">'."\n";
 | |
| 	if($action == 'edit'){
 | |
| 		echo "\t".'<input type="hidden" name="action" value="edit"></input>'."\n";
 | |
| 		if($task == 'dochange') {
 | |
| 			$d_array = array('name', 'type', 'hp', 'mp', 'starke', 'verteidigung', 'speed',
 | |
| 					'ausdauer', 'glueck', 'level', 'bild');
 | |
| 
 | |
| 			$sql = 'UPDATE chars c INNER JOIN kampf_list kl ON c.id=kl.charakter SET c.';
 | |
| 			$sql .= $d_array[0].' = \''.encodeNoHTMLWithBB($data[$d_array[0]]).'\'';
 | |
| 
 | |
| 			for($i=1;$i<count($d_array);$i++){
 | |
| 				$sql .= ', c.'.$d_array[$i].' = \''.encodeNoHTMLWithBB($data[$d_array[$i]]).'\'';
 | |
| 			}
 | |
| 
 | |
| 			$d_array = array('zeit_rec', 'lvlmin', 'lvlmax');
 | |
| 			for($i=0;$i<count($d_array);$i++){
 | |
| 				$sql .= ', kl.'. $d_array[$i].' = \''.encodeNoHTMLWithBB($data[$d_array[$i]]).'\'';
 | |
| 			}
 | |
| 
 | |
| 			$sql .= ' WHERE c.id=\''.$charid.'\'';
 | |
| 			//echo $sql.'<br>';
 | |
| 			$u = mysql_query($sql);
 | |
| 			if(mysql_affected_rows() == 0 || $u2 === FALSE) {
 | |
| 				echo "\t\t\t".'<tr><td colspan="2" style="color:red">Fehler! Änderungen konnten nicht übernommen werden!</td></tr>';
 | |
| 			} else{
 | |
| 				logaction('Ein NPC wurde geändert (id = '.$charid.','.encodeNoHTMLWithBB(join($data,',')).')');
 | |
| 				echo "\t\t\t".'<tr><td colspan="2">Änderungen wurden übernommen!</td></tr>';
 | |
| 			}
 | |
| 			displayNPC($action, null, $charid, $table, $page, $data);
 | |
| 		} else {
 | |
| 			echo "\t".'<input type="hidden" name="task" value="dochange"></input>'."\n";
 | |
| 			$d_select_array = array(array('Dragonball', 'Onepiece'), array(300, 1200, 3600));
 | |
| 			$d_array = array('charakter', 'name', 'type', 'hp', 'mp', 'starke', 'verteidigung', 'speed',
 | |
| 		'ausdauer', 'glueck', 'zeit_rec', 'level', 'lvlmin', 'lvlmax', 'bild');
 | |
| 			$desc_select_array = array(array('Dragonball', 'Onepiece'), array('5min', '20min', '60min'));
 | |
| 			$desc_array = array('ID', 'Name', 'Type', 'HP', 'MP', 'Stärke', 'Verteidigung', 'Geschwindigkeit',
 | |
| 			'Ausdauer', 'Glück', 'Kampfdauer in Sekunden', 'Level', 'Min-Level', 'Max-Level', 'Bild');
 | |
| 
 | |
| 			$sql = 'SELECT * FROM chars c inner join npc_item ni on ni.charakter = c.id inner join kampf_list kl on ni.charakter = kl.charakter WHERE c.id ='.$charid;
 | |
| 			$qry = mysql_query($sql);
 | |
| 			$row = mysql_fetch_assoc($qry);
 | |
| 			$colspan = 2;
 | |
| 
 | |
| 			echo "\t".'<tr><td colspan="'.$colspan.'"><h1 style="text-align:center">NPC bearbeiten</h1></td></tr>'."\n";
 | |
| 			echo "\t\t".'<tr><td>'.$desc_array[0].'</td><td style="text-align:center">'.$row[$d_array[0]].'</td></tr>'."\n";
 | |
| 			$j = 0;
 | |
| 			for($i = 1;$i<count($d_array);$i++){
 | |
| 				if($i == 2 || $i == 10) {
 | |
| 					echo "\t\t".'<tr><td>'.$desc_array[$i].'</td><td style="text-align:center"><select id="input" name="data['.$d_array[$i].']">';
 | |
| 					for($k = 0; $k < count($d_select_array[$j]); $k++) {
 | |
| 						echo "<option value=\"".$d_select_array[$j][$k]."\" ";
 | |
| 						if($d_select_array[$j][$k] == debbcode($row[$d_array[$i]])) {
 | |
| 							echo " selected";
 | |
| 						}
 | |
| 						echo ">".$desc_select_array[$j][$k]."</option>";
 | |
| 					}
 | |
| 					echo '</select></td></tr>'."\n";
 | |
| 					$j++;
 | |
| 				} else {
 | |
| 					echo "\t\t".'<tr><td>'.$desc_array[$i].'</td><td style="text-align:center"><input name="data['.$d_array[$i].']" value="'.debbcode($row[$d_array[$i]]).'"></input></td></tr>'."\n";
 | |
| 				}
 | |
| 			}
 | |
| 			echo "\t".'<tr><td colspan="'.$colspan.'" style="text-align:center"><input type="submit" value="speichern"></td></tr>'."\n";
 | |
| 			echo "\t".'<tr><td colspan="'.$colspan.'" style="text-align:center"><a href="'.$_SERVER['PHP_SELF'].'?choose=npc">NPC Übersicht</a></td></tr>'."\n";
 | |
| 		}
 | |
| 	} else if($action == 'create'){
 | |
| 		$colspan = 1;
 | |
| 		echo "\t".'<tr><td colspan="'.$colspan.'"><h1 style="text-align:center">NPC erstellen</h1></td></tr>'."\n";;
 | |
| 
 | |
| 		echo "\t".'<tr><td colspan="'.$colspan.'" style="text-align:center"><a href="'.$_SERVER['PHP_SELF'].'?choose=npc">NPC Übersicht</a></td></tr>'."\n";
 | |
| 	} else if($action == 'delete'){
 | |
| 		$colspan = 1;
 | |
| 
 | |
| 		$sql = 'SELECT * FROM chars WHERE id = '.$charid;
 | |
| 		$qry = mysql_query($sql);
 | |
| 		$row = mysql_fetch_assoc($qry);
 | |
| 		echo "\t".'<tr><td colspan="'.$colspan.'"><h1 style="text-align:center">NPC löschen</h1></td></tr>'."\n";;
 | |
| 		if(is_null($task)){
 | |
| 			echo "\t".'<tr><td colspan="'.$colspan.'" style="text-align:center">Soll der NPC '.$row['name'].' wirklich gelöscht werden</td></tr>'."\n";;
 | |
| 			echo "\t".'<tr><td style="text-align:center"><a href="'.$_SERVER['PHP_SELF'].'?choose=npc&action=delete&task=do&charid='.$charid.'">ja</a>, <a href="'.$_SERVER['PHP_SELF'].'?choose=npc&action=">nein</a>, <a href="'.$_SERVER['PHP_SELF'].'?choose=npc&action=delete&charid='.$charid.'">vielleicht</a></td></tr>'."\n";
 | |
| 		} else {
 | |
| 			$sql = 'DELETE c,ni,kl,l FROM chars c inner join npc_item ni on ni.charakter = c.id inner join kampf_list kl on ni.charakter = kl.charakter inner join lernen l on l.besitzer = c.id where c.id = '.$charid;
 | |
| 			//			echo $sql.'<br>';
 | |
| 			$qry = mysql_query($sql);
 | |
| 			if($qry === FALSE || mysql_affected_rows() <= 0){
 | |
| 				echo "\t".'<tr><td colspan="'.$colspan.'" style="text-align:center;color:red">Der NPC '.$row['name'].' konnte nicht gelöscht werden!</td></tr>'."\n";;
 | |
| 			} else {
 | |
| 				echo "\t".'<tr><td colspan="'.$colspan.'" style="text-align:center">Der NPC '.$row['name'].' wurde gelöscht!</td></tr>'."\n";;
 | |
| 			}
 | |
| 			// SELECT * FROM chars c inner join npc_item ni on ni.charakter = c.id inner join kampf_list kl on ni.charakter = kl.charakter
 | |
| 		}
 | |
| 		echo "\t".'<tr><td colspan="'.$colspan.'" style="text-align:center"><a href="'.$_SERVER['PHP_SELF'].'?choose=npc">NPC Übersicht</a></td></tr>'."\n";
 | |
| 	} else{
 | |
| 		$d_array = array('id', 'name', 'level');
 | |
| 		$desc_array = array('id', 'Name', 'Level');
 | |
| 
 | |
| 		$sql = 'SELECT '.join($d_array,',').' from chars where rasse = \'NPC\' ORDER BY level';
 | |
| 		$qry = mysql_query($sql.' LIMIT '.($page*20).', 20');
 | |
| 		$anzahlSeiten = ceil(mysql_num_rows(mysql_query($sql))/20);
 | |
| 		$colspan = count($d_array);
 | |
| 		echo "\t".'<tr><td colspan="'.$colspan.'"><h1 style="text-align:center">Übersicht</h1></td></tr>'."\n";;
 | |
| 		echo "\t".'<tr>'."\n";
 | |
| 		for($i=1;$i<count($d_array);$i++){
 | |
| 			echo "\t\t".'<td>'.$desc_array[$i].'</td>'."\n";
 | |
| 		}
 | |
| 		echo "\t\t".'<td style="text-align:center">Bearbeiten</td>'."\n";
 | |
| 		echo "\t".'</tr>'."\n";
 | |
| 
 | |
| 		echo "\t".'<tr><td colspan="'.$colspan.'"><hr></td></tr>'."\n";
 | |
| 
 | |
| 		while($row = mysql_fetch_assoc($qry)){
 | |
| 			echo "\t".'<tr>'."\n";
 | |
| 			for($i=1;$i<count($d_array);$i++){
 | |
| 				echo "\t\t".'<td>'.$row[$d_array[$i]].'</td>'."\n";
 | |
| 			}
 | |
| 
 | |
| 			echo "\t\t".'<td style="text-align:center">'."\n";
 | |
| 
 | |
| 			// Echo the delete and the edit button :)
 | |
| 			echo "\t\t\t".'<a href="'.$_SERVER['PHP_SELF'].'?choose=npc&action=edit&charid='.$row[$d_array[0]].'">Edit</a>, '."\n";
 | |
| 			echo "\t\t\t".'<a href="'.$_SERVER['PHP_SELF'].'?choose=npc&action=delete&charid='.$row[$d_array[0]].'">Delete</a>'."\n";
 | |
| 
 | |
| 			echo "\t\t".'</td>'."\n";
 | |
| 			echo "\t".'</tr>'."\n";
 | |
| 
 | |
| 		}
 | |
| 
 | |
| 		echo "\t".'<tr><td colspan="'.$colspan.'" style="text-align:center"><a href="'.$_SERVER['PHP_SELF'].'?choose=npc&action=create">Create a new NPC</a></td></tr>'."\n";
 | |
| 		echo "\t".'<tr><td colspan="'.$colspan.'" style="text-align:center"><hr></td></tr>'."\n";
 | |
| 	}
 | |
| 	//TODO: ändern, dass man nicht 2x Zum Hauptmenü hat xD
 | |
| 	echo "\t".'<tr><td colspan="'.$colspan.'" style="text-align:center"><a href="'.$_SERVER['PHP_SELF'].'">Zum Hauptmenu</a></td></tr>'."\n";
 | |
| 	echo "\t".'</table>'."\n";
 | |
| 	echo '</form>'."\n";
 | |
| 
 | |
| }
 | |
| ?>
 |