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.

353 lines
12 KiB
HTML

<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>looking for</title>
<link rel="icon" href="imgs/park/flower2.gif">
<link rel="stylesheet" href="park_walk.css">
</head>
<body>
<audio loop="loop" id="theme1" preload="auto"><source src="sound/theme1.wav" type="audio/wav"></audio>
<audio id="page"><source src="sound/page.wav" type="audio/wav"></audio>
<audio id="click"><source src="sound/click.wav" type="audio/wav"></audio>
<audio id="comic"><source src="sound/speech.wav" type="audio/wav"></audio>
<audio id="comic_ned"><source src="sound/ned_speech.wav" type="audio/wav"></audio>
<audio id="bark"><source src="sound/bark.wav" type="audio/wav"></audio>
<audio id="smoke"><source src="sound/smoke.wav" type="audio/wav"></audio>
<div class="back" style="display: none;">
Do you want to start from the beginning?<br>
<button id="go_to_start" class="button_back"> yes </button> / <button id="stay"class="button_back"> no </button>
</div>
<div id="groundline"></div>
<div id="ground">
<div id="player_img"></div>
<div id="player_img"></div>
<img id="cat" src="imgs/park/cat.gif" height="40px" style="display: none;">
<img id="snake" src="imgs/park/snake.gif" height="40px" style="display: none;">
<img id="bench" src="imgs/park/bench.gif" height="150px">
<img id="tree1" src="imgs/park/tree1.gif" height="200px">
<img id="tree2" src="imgs/park/tree4.gif" height="160px">
<img id="tree3" src="imgs/park/tree4.gif" height="160px">
<img id="tree3_5" src="imgs/park/tree1.gif" height="200px">
<img id="flower1" src="imgs/park/flower1.gif" height="30px">
<img id="flower2" src="imgs/park/flower3.gif" height="40px">
<img id="flower3" src="imgs/park/flower3.1.gif" height="40px">
<img id="flower4" src="imgs/park/flower1.1.gif" height="30px">
<img id="flower5" src="imgs/park/flower1.gif" height="30px">
<img id="grass1" src="imgs/park/grass1.gif" height="90px">
<img id="statue" src="imgs/park/statue.gif" height="150px">
<img id="tree4" src="imgs/park/tree4.gif" height="160px">
<img id="flower6" src="imgs/park/flower1.1.gif" height="30px">
<img id="flower7" src="imgs/park/flower3.1.gif" height="40px">
<img id="flower8" src="imgs/park/flower3.1.gif" height="40px">
<img id="tree5" src="imgs/park/tree1.gif" height="230px">
<img id="sport1" src="imgs/park/fitness1.gif" height="70px">
<img id="sport2" src="imgs/park/fitness2.gif" height="70px">
<img id="newspaper_seller" src="imgs/park/newspaper_seller.gif" height="110px">
<img id="woman" src="imgs/park/woman.gif" height="120px">
<img id="flower9" src="imgs/park/flower1.1.gif" height="30px">
<img id="dog" src="imgs/park/dog1.gif" height="80px">
<img id="ned" src="imgs/park/ned2.gif" height="110px">
<img id="grass2" src="imgs/park/grass1.gif" height="90px">
<div class="woman_bubble" style="display: none;">I don't know, you should try to ask the news vendor ■</div>
<div class="dog_bubble" style="display: none;">Have you heard what happened to the cats? ✜</div>
<div class="dog_bubble2" style="display: none;">It looks like they ran away from the cat shelter tonight ■</div>
<div class="vendor_bubble" style="display: none;">I sold a copy to a guy not so long ago. He must be still around ■</div>
<div class="fit2_bubble" style="display: none;"></div>
<div class="fit1_bubble" style="display: none;"></div>
<div class="ned_bubble1" style="display: none;">I was hoping that someone would find my newspaper ✜</div>
<div class="ned_bubble2" style="display: none;">My name is Ned, I used to be the school's janitor. I got fired last week because the school noticed I was investigating the kids' conditions. Believe me, the situation is shadier than it looks. Do you wanna know what I just found out? ✜</div>
<div class="ned_bubble3" style="display: none;">The school is involved in sinister activities: together with the Monteferro Food Enterprise they are poisoning the children's meals. Follow me to the enterprise's fields: I can show you the proof that what I'm saying is true ■</div>
</div>
<div class="text_container">
<div class="message1 instructions">
<span class="instructions_arrow"></span> Move around the park with the arrows ←↑↓→
</div>
<div class="message_dog" style="display: none;">
Amanda might be at the cat shelter. <button onclick="location.href='cat_shelter.html';"><span class="button_text">Go there to check it out !</span></button>
</div>
<div class="message2" style="display: none;">
You found him!
</div>
<div class="message3" style="display: none;">
It looks intriguing: <button onclick="location.href='monteferro.html';"><span class="button_text">go to the Monteferro Food Enterprise</span></button> with Ned.
</div>
</div>
<script src="jquery.min.js"></script>
<script>
// audio
var theme = document.querySelector("#theme1");
var page = document.querySelector("#page");
var click = document.querySelector("#click");
var comic = document.querySelector("#comic");
var comic_ned = document.querySelector("#comic_ned");
var bark = document.querySelector("#bark");
var smoke = document.querySelector("#smoke");
theme.volume = 0.4;
click.volume = 0.5;
bark.volume = 0.5;
$("body").hover( function() {
theme.play();
theme.addEventListener('paused',function() {
theme.play();
},false);
})
//adjust camera scroll
var $div = $('#player_img');
var screenLeftMin = 200;
var screenLeftMax = 870;
function adjustScroll() {
var playerLeft = parseInt($div.css("left"));
var scrollLeft = $(document).scrollLeft();
var screenLeft = playerLeft - scrollLeft;
console.log ("screenleft:", screenLeft);
if (screenLeft > screenLeftMax ) {
$(document).scrollLeft(playerLeft - screenLeftMax)
}
if (screenLeft < screenLeftMin ) {
$(document).scrollLeft(playerLeft - screenLeftMin)
}
}
//move the character
$(document).keydown(function(e) {
var offset = $div.position();
console.log("offset:", offset);
// change z-index
var parent_height = $("#ground").height();
var top_val_px = $div.css('top');
var top_val_only = parseInt(top_val_px);
var top_Percentage = (top_val_only/parent_height) * 100;
console.log ("top %", top_Percentage);
var parent_width = $("#ground").width();
var left_val_px = $div.css('left');
var left_val_only = parseInt(left_val_px);
var left_Percentage = (left_val_only/parent_width) * 100;
console.log ("left %", left_Percentage);
if (left_Percentage > 20) {
$("#snake").show();
$("#snake").animate({ top: "120%" }, {
duration: 2000
}).promise().done(function(){
$("#snake").hide();
});
}
if (left_Percentage == 20) {
smoke.play();
}
if (left_Percentage > 70) {
$("#cat").addClass("flipped");
$("#cat").show();
$("#cat").animate({ left: "20%" }, {
duration: 1500
}).promise().done(function(){
$("#cat").hide();
});
}
if (left_Percentage == 70) {
smoke.play();
}
if (top_Percentage > 65) {
$div.css ("zIndex", 5)
}
if (top_Percentage < 55 && top_Percentage > 39) {
$div.css ("zIndex", 4)
}
if (top_Percentage < 39) {
$div.css ("zIndex", 1)
}
switch (e.which) {
case 83:
$(".back").show();
case 37:
offset.left -= 20;
console.log("left");
$div.addClass("flipped");
$(".message1").hide();
break;
case 38:
offset.top -= 20;
console.log("top");
$(".message1").hide();
break;
case 39:
offset.left += 20;
console.log("right");
$div.removeClass("flipped");
$(".message1").hide();
break;
case 40:
offset.top += 20;
console.log("down");
$(".message1").hide();
break;
}
//check the offset and prevent the character to exceed the screen dimension
if (offset.left < 80) {
offset.left = 80;
}
if (offset.left > $("#ground").width() - 250) {
offset.left = $("#ground").width() - 250;
}
if (offset.top < 130) {
offset.top = 130;
}
if (offset.top > $("#ground").height() - 250) {
offset.top = $("#ground").height() - 250;
}
$div.css("left", offset.left);
$div.css("top", offset.top);
e.preventDefault();
adjustScroll();
})
// saves game step in the local storage
window.onload = function() {
theme.play();
window.localStorage.setItem("looking_for_N","opened")
console.log ("looking for N:",localStorage.looking_for_N)
}
//get player avatar from local storage
console.log (localStorage.myavatar)
var img = document.createElement("img");
img.src = localStorage.myavatar;
var player_img = document.querySelector("#player_img");
player_img.appendChild(img);
//on click
$("#go_to_start").click( function (){
window.location.href="index.html";
click.play();
});
$("#stay").click( function (){
$(".back").hide();
click.play();
});
$("#woman").click (function(){
comic.play();
$(".woman_bubble").show();
});
$(".woman_bubble").click (function(){
click.play();
$(".woman_bubble").toggle();
});
$("#dog").click (function(){
bark.play();
$(".dog_bubble").toggle();
});
$(".dog_bubble").click (function(){
bark.play();
$(".message1, .dog_bubble").hide();
$(".dog_bubble2, .message_dog").toggle();
});
$(".dog_bubble2").click (function(){
click.play();
$(".message1").hide();
$(".message_dog, .dog_bubble2").toggle();
});
$("#newspaper_seller").click (function(){
comic.play();
$(".vendor_bubble").show();
});
$(".vendor_bubble").click (function(){
click.play();
$(".vendor_bubble").toggle();
});
$("#sport1").click (function(){
comic.play();
$(".fit2_bubble").show();
});
$(".fit2_bubble").click (function(){
click.play();
$(".fit2_bubble").toggle();
});
$("#sport2").click (function(){
comic.play();
$(".fit1_bubble").show();
});
$(".fit1_bubble").click (function(){
click.play();
$(".fit1_bubble").toggle();
});
$("#ned").click (function(){
comic_ned.play();
$(".ned_bubble1").show();
$(".message2").show();
$(".message1").hide();
});
$(".ned_bubble1").click (function(){
comic_ned.play();
$(".ned_bubble2").show();
$(".ned_bubble1").hide();
});
$(".ned_bubble2").click (function(){
comic_ned.play();
$(".ned_bubble2").toggle();
$(".ned_bubble3").show();
$(".message2").hide();
$(".message3").show();
});
$(".ned_bubble3").click (function(){
click.play();
$(".ned_bubble3").toggle();
});
</script>
<script type="text/javascript" src="index.js" ></script>
</body>