Ця задача є фінальним проектом курсу Udacity Object Oriented Javascript.
Використовуйте “classname.prototype.*” синтаксис (не ES2015/ES6 class
syntax).
Зміни вносьте тільки до app.js
і на код-ревʼю подавайте тільки цей файл.
You will be provided visual assets and a game loop engine; using these tools you must add a number of entities to the game including the player characters and enemies to recreate the classic arcade game Frogger.
Games have a lot of objects, and those objects do a lot of different things; but sometimes those objects do some very similar things as well. This creates a great opportunity to practice object-oriented programming, an important programming paradigm that influences your application architecture and provides performance optimizations.
You will learn JavaScript’s object oriented programming features to write eloquently designed classes capable of creating countless instances of similarly functioning objects. You will discover a variety of ways that inheritance and delegation can be used to create well-architected and performant applications.
Here is an example of what the Frogger-like game should look like:
app.js
And here are some more detailed instructions to help you get started.
Also note that:
Once done, submit the code you authored for review just like with any other practical task before.