浏览代码

Import javascript projects

From my internship from 2014.
DricomDragon 4 年之前
父节点
当前提交
aa80dd4d91
共有 6 个文件被更改,包括 325 次插入0 次删除
  1. 38 0
      catchAllScreen/code.js
  2. 14 0
      catchAllScreen/main.html
  3. 140 0
      dodgeGame/code.js
  4. 14 0
      dodgeGame/main.html
  5. 105 0
      markSetter/code.js
  6. 14 0
      markSetter/main.html

+ 38 - 0
catchAllScreen/code.js

@@ -0,0 +1,38 @@
+//Variables
+var wSize, hSize;
+
+//Fonctions de redimensionnement
+function dimensionner(bloc) {
+	
+	if( typeof( window.innerHeight ) == 'number' )
+		hSize = window.innerHeight;
+	else if( document.documentElement && document.documentElement.clientHeight )
+		hSize = document.documentElement.clientHeight;
+
+	if( typeof( window.innerWidth ) == 'number' )
+		wSize = window.innerWidth;
+	else if( document.documentElement && document.documentElement.clientWidth )
+		wSize = document.documentElement.clientHeight;
+
+	//alert("Largeur : " + wSize + "   Hauteur : " + hSize);
+	document.getElementById(bloc).height = hSize;
+	document.getElementById(bloc).width = wSize;
+}
+
+window.onload = function(){ dimensionner("canvas") };
+window.onresize = function(){ dimensionner("canvas") };
+
+//Propriétés
+var canvas  = document.querySelector('#canvas');
+var context = canvas.getContext('2d');
+
+//Main
+context.lineWidth = "5";
+function mainLoop() {
+	//Affichage
+	context.strokeStyle = "blue";
+	context.strokeRect(1, 1, wSize-30, hSize-30);
+}
+
+//Loop
+setInterval(mainLoop, 1000);

+ 14 - 0
catchAllScreen/main.html

@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <meta charset="utf-8" />
+    <title>Code interne dim</title>
+    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
+  </head>
+  <body>
+    <canvas id="canvas" width="500" height="200">
+        <p>Désolé, votre navigateur ne supporte pas Canvas. Mettez-vous à jour</p>
+    </canvas>
+    <script src="code.js"></script>
+  </body>
+</html>

+ 140 - 0
dodgeGame/code.js

@@ -0,0 +1,140 @@
+// Variables
+	var posY, pos1, pos2, posX;
+	var wSize, hSize;
+	var dim;
+	var bulletX, bulletY, bulletAcc = 0;
+	var text = "Esquive !!!";
+	var nbVague = 0;
+	var division = 1;
+
+//Fonctions de redimensionnement
+function dimensionner() {
+	
+	if( typeof( window.innerHeight ) == 'number' )
+		hSize = window.innerHeight;
+	else if( document.documentElement && document.documentElement.clientHeight )
+		hSize = document.documentElement.clientHeight;
+
+	if( typeof( window.innerWidth ) == 'number' )
+		wSize = window.innerWidth;
+	else if( document.documentElement && document.documentElement.clientWidth )
+		wSize = document.documentElement.clientHeight;
+
+	document.getElementById("canvas").height = hSize;
+	document.getElementById("canvas").width = wSize;
+
+	// Etalonnage
+	pos1 = hSize/4;
+	pos2 = 3*hSize/4;
+	dim = hSize / 8;
+	posX = wSize / 4;
+	division = wSize / 2000;
+
+	// Réinitialisation
+	posY = pos2;
+	bulletX = wSize-dim/2;
+	bulletY = pos1;
+}
+
+// Fonctions
+function clear() {
+	context.fillStyle = "black";
+	context.clearRect(0, 0, wSize, hSize);
+	context.fillRect(0, 0, wSize-dim/2, hSize-dim/2);
+}
+
+function drawPic(x, y) {
+	context.fillStyle = "rgb(23, 167, 67)";
+	context.beginPath();
+	context.moveTo(x, y);// 1er point
+	context.lineTo(x-dim, y+dim);// 2e point
+	context.lineTo(x-2*dim, y+dim);// 3e
+	context.lineTo(x-2*dim, y-dim);// 4e
+	context.lineTo(x-dim, y-dim);// 5e
+	context.closePath();
+	context.fill();
+}
+
+function drawBullet(x, y) {
+	if (bulletY == pos1) context.fillStyle = "rgb(223, 0, 182)";
+	else context.fillStyle = "rgb(223, 182, 0)";
+		
+	context.beginPath();
+	context.moveTo(x, y-dim);// 1er point
+	context.lineTo(x+dim, y);// 2e point
+	context.lineTo(x, y+dim);// 3e
+	context.lineTo(x-dim, y);// 4e
+	context.closePath();
+	context.fill();
+}
+
+function drawText(x, y, text) {
+	context.font = "bold 32pt Calibri, Geneva, Arial";
+	context.fillStyle = "#fff";
+	context.fillText(text, x, y);
+}
+
+// Gestion des évènements
+	// Variation de tailles
+	window.onload = function(){ dimensionner() };
+	window.onresize = function(){ dimensionner() };
+
+	// Actions
+	function jump() {
+		posY = pos1;
+	}
+	function down() {
+		posY = pos2;
+	}
+
+	// Ordi
+	document.addEventListener('mousedown', function(e) {
+		jump();
+	}, false);
+	document.addEventListener('mouseup', function(e) {
+		down();
+	}, false);
+
+	// Smartphone
+	document.addEventListener('touchstart', function(e) {
+		jump();
+	}, false);
+	document.addEventListener('touchend', function(e) {
+		down();
+	}, false);
+
+// Propriétés
+var canvas  = document.querySelector('#canvas');
+var context = canvas.getContext('2d');
+
+// Main
+function mainLoop() {
+	//Nettoyage
+	clear();
+
+	//Ennemi
+	bulletX -= bulletAcc;
+	bulletAcc *= 0.99;
+	if (bulletX < posX) {
+		if (bulletY == posY) { //Touché !
+			text = "Game Over";
+		}
+		else if (text != "Game Over") { //Retire
+			nbVague++;
+			bulletX = wSize-dim/2;
+			if (Math.floor(Math.random()*2) == 1) bulletY = pos1;
+			else bulletY = pos2;
+		}
+	}
+	else {
+		bulletAcc += division;
+	}
+
+	//Affichage
+	drawPic(posX, posY);
+	drawBullet(Math.ceil(bulletX), bulletY);
+	drawText(2, 34, text + " Vague n°" + nbVague);
+}
+
+//Loop
+setInterval(mainLoop, 20);

+ 14 - 0
dodgeGame/main.html

@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <meta charset="utf-8" />
+    <title>Esquive ! by Jovian</title>
+    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
+  </head>
+  <body>
+    <canvas id="canvas" width="123" height="456">
+        <p>Désolé, votre navigateur ne supporte pas Canvas. Mettez le à jour.</p>
+    </canvas>
+    <script src="code.js"></script>
+  </body>
+</html>

+ 105 - 0
markSetter/code.js

@@ -0,0 +1,105 @@
+// Propriétés
+var canvas  = document.querySelector('#canvas');
+var context = canvas.getContext('2d');
+var wSize = 800;
+var hSize = 600;
+context.font = "bold 22pt Calibri,Geneva,Arial";
+
+// Variables
+var dimFocus = 15;
+var mouseX = 0, mouseY = 0, mouseClic = false; // Mouse state
+var baliseXArray = new Array(), baliseYArray = new Array(), baliseArrayLenght = 0;
+
+// Fonctions
+function clear() {
+	context.fillStyle = "black";
+	context.fillRect(0, 0, wSize, hSize);
+}
+
+function drawPic(x, y) {
+	context.strokeStyle = "rgb(23, 145, 167)";
+	context.beginPath();
+	context.moveTo(x, y);// 1er point
+	context.lineTo(x+25, y-25);// 2e point
+	context.lineTo(x+25, y-50);// 3e
+	context.lineTo(x-25, y-50);// 4e
+	context.lineTo(x-25, y-25);// 5e
+	context.closePath();
+	context.stroke();
+}
+
+function drawFocus(x, y) {
+	context.strokeStyle = "rgb(123, 45, 167)";
+
+	context.lineWidth = "5";
+	context.beginPath();
+
+	context.moveTo(0, 0);
+	context.lineTo(x-dimFocus, y-dimFocus);
+
+	context.moveTo(wSize, 0);
+	context.lineTo(x+dimFocus, y-dimFocus);
+
+	context.moveTo(wSize, hSize);
+	context.lineTo(x+dimFocus, y+dimFocus);
+
+	context.moveTo(0, hSize);
+	context.lineTo(x-dimFocus, y+dimFocus);
+
+	context.stroke();
+}
+
+function drawText(x, y, text) {
+	context.fillStyle = "#fff";
+	context.fillText(text, x, y);
+}
+
+// Gestion des évènements
+// Souris
+document.addEventListener('mousemove', function(e) {
+	mouseX = e.clientX;
+	mouseY = e.clientY;
+}, false);
+
+document.addEventListener('mousedown', function(e) {
+	mouseClic = true;
+}, false);
+
+document.addEventListener('mouseup', function(e) {
+	mouseClic = false;
+	baliseXArray.push(mouseX);
+	baliseYArray.push(mouseY);
+}, false);
+
+// Smartphone
+document.addEventListener('touchstart', function(e) {
+	drawPic(200, 100);
+}, false);
+
+// Main
+function mainLoop() {
+	//Nettoyage
+	clear();
+
+	//Curseurs
+	drawFocus(mouseX, mouseY);
+
+	//Placement balise en cours
+	if (mouseClic) {
+		drawPic(mouseX, mouseY);
+	}
+
+	//Affichage de toutes les balises
+	baliseArrayLenght = baliseXArray.length;
+	for (var i = 0; i < baliseArrayLenght; i++) {
+		drawPic(baliseXArray[i], baliseYArray[i]);
+	}
+
+	//Affichage effectif
+	drawText(2, 24, baliseArrayLenght + " balises");
+}
+
+//Loop
+setInterval(mainLoop, 20);
+
+

+ 14 - 0
markSetter/main.html

@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <meta charset="utf-8" />
+    <meta name="viewport" content="width=device-width, maximum-scale=intial-scale">
+    <title>Code interne</title>
+  </head>
+  <body>
+    <canvas id="canvas" width="800" height="600">
+        <p>Désolé, votre navigateur ne supporte pas Canvas. Mettez-vous à jour</p>
+    </canvas>
+    <script src="code.js"></script>
+  </body>
+</html>