Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a prototype for Level #117

Merged
merged 6 commits into from
Aug 5, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
137 changes: 137 additions & 0 deletions javascript/levels.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
function Level(name, backgrounds, obstacles){
this._backgrounds = backgrounds;
this.obstacles = obstacles;
this._obstacles = createObstacles(obstaclesLayer);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What does this line do?

this._name = name;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

where does name com from?

this._score = 0;
}

Level.prototype = {

show: function(){

for (background in this.backgrounds){
show_layer(background["layer"]);
}

for(obstacle in this.obstacles){
show_layer(obstacle["layer"]);
}

},

hide: function(){

for (background in this.backgrounds){
hide_layer(background["layer"]);
}

for(obstacle in this.obstacles){
hide_layer(obstacle["layer"]);
}

},

getBackgrounds(): function(){
return this._backgrounds;
},

getObstacles: function(){
return this._obstacles;
},

getName(): function(){
return this._name;
},

getScore(): function{
return this_score;
},

start(): function(){
//Needs to be Implemented
},

stop(): function(){
// Needs to be Implemented
},

}

var all_levels,current_level;

// Specifications of any new level must be given here

var all_level_specifications = {
"desert":{

"obstacles":[
{
"layer": "cactus",
"velocity": 10,
}
],

"backgrounds":[
{
"layer" : "DayAndNight",
"velocity" : -20
},
{
"layer" : "background",
"velocity" : -7
},
{
"layer" : "SunAndMoon",
"velocity" : 1
},
{
"layer" : "sky",
"velocity" : 0
}
]

},

"gotham":{

"obstacles":[
{
"layer":"Gotham_Obstacles",
"velocity": -7
}
],

"backgrounds":[
{
"layer":"Gotham",
"velocity": -7
}
],
},

};


function getAllLevels(){
return all_levels;
}

function newLevel(name,backgroundLayers,obstaclesLayer){
return new Level(name,backgroundLayers,obstaclesLayer);
}

function setCurrentLevel(name){
current_level = all_levels[name];
}

function getCurrentLevel(){
return current_level;
}

window.onload = function() {
for (level in all_level_specifications) {
specs = all_level_specifications[level];
all_levels[level] = newLevel(level, specs["backgrounds"], specs["obstacles"]);
}
}