Click here to Skip to main content
15,884,473 members
Articles / Web Development / HTML5

Editor for Mario5

Rate me:
Please Sign up or sign in to vote.
4.98/5 (62 votes)
2 Aug 2012CPOL22 min read 106.5K   3K   90  
Adding some spice to the Mario game by providing a Level editor with a social platform.
<!doctype html>
<html>
<head>
<meta charset=utf-8 />
<title>Super Mario HTML5 Test</title>
<link href="Content/style.css" rel="stylesheet" />
</head>
<body>
<div id="game">
<div id="world">
</div>
<div id="coinNumber" class="gauge">0</div>
<div id="coin" class="gaugeSprite"></div>
<div id="liveNumber" class="gauge">0</div>
<div id="live" class="gaugeSprite"></div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="Scripts/testlevels.js"></script>
<script src="Scripts/oop.js"></script>
<script src="Scripts/keys.js"></script>
<script src="Scripts/constants.js"></script>
<script src="Scripts/main.js"></script>
<script>
/*
 * -------------------------------------------
 * DOCUMENT READY STARTUP METHOD
 * -------------------------------------------
 */
$(document).ready(function() {
	var keys = new KeyBoard();
	var level = new Level('world');
	
	var nextCampaign = function() {
		level.pause();
		var settings = level.exportSaveGame();		
		level.reset();
		level.load(definedLevels[level.id + 1]);
		level.importSaveGame(settings);		
		level.start();
	};
	
	var gameOver = function() {
		level.load(definedLevels[0]);
		level.start();
	};

	level.setInput(keys);
	level.load(definedLevels[0]);
	level.setDeadCallback(gameOver);
	level.setNextCallback(nextCampaign);
	level.start();
});
</script>
</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer
Germany Germany
Florian lives in Munich, Germany. He started his programming career with Perl. After programming C/C++ for some years he discovered his favorite programming language C#. He did work at Siemens as a programmer until he decided to study Physics.

During his studies he worked as an IT consultant for various companies. After graduating with a PhD in theoretical particle Physics he is working as a senior technical consultant in the field of home automation and IoT.

Florian has been giving lectures in C#, HTML5 with CSS3 and JavaScript, software design, and other topics. He is regularly giving talks at user groups, conferences, and companies. He is actively contributing to open-source projects. Florian is the maintainer of AngleSharp, a completely managed browser engine.

Comments and Discussions