Skip to content

LeoRc01/GameBased

Repository files navigation

GameBased Logo - GameBased

An android application to get and search for videogames informations, developed in Kotlin and based on the MVVM architecture model.

GameBased Showcase 1

GameBased Showcase 2

GameBased is an application that allows users to view information details about videogames such as the genre, the platforms it is available on, a summary, and the release date.

Table of Contents

Development team

Team name: CIP Studio

Members:

  • 869039 Leonardo Valente (referent)
  • 869901 Davide Radaelli
  • 866147 Simone Biotto
  • 872491 Federico Pulcino

Features offered

The GameBased application based on the IGDB API allows the user to do the following operations:

  • View the details of a game
  • Search for games and filter results
  • View and consult certain rankings such as
    • Most rated
    • Top rated
    • Most hyped
    • Loved by critics
    • Most popular
    • Recently released
    • Coming soon
    • Worst rated
  • Sharing of videogames via links
  • Receive recommendations based on your searches and views via the category "for you"
  • Register: registration unlocks the ability to access the "for you", add games to your favorites and cloud sync for more recent searches and most recently visited games
  • Possibility to choose between "Italian" and "English" as main language of the application
  • Ability to choose between light theme and dark theme
  • Ability to delete account from firebase servers

Architecture

The architecture is based on the MVVM model, so there's a UI layer that is based on the data obtained from the ViewModels thanks to the repositories that query a remote service, be it IGDB, firebase and/or a local database, all optimized through a caching system.

Application MVVM Architecture

Classes

  • User: internal class that takes advantage of the FirebaseRepository, HistoryRepository and classes RecentSearchesRepository to manage consistency between the local database and the Remote database and User authentication. It also manages case studies of the user without a profile, thus avoiding managing the remote database but only the local one
  • IGDBRepository: a class of type Repository that allows the application to interact with the IGDB API, exposing the APIs that can be used by each class of the project and independently managing the cache
  • FirebaseRepository: a class of type Repository that manages the remote database of the known features, i.e. it manages your favorite games and the games you have visited or searched for recently. It also calls FirebaseAuth to login
  • HistoryRepositoryLocal: a repository-type class that manages the Room-local database regarding visit history.
  • RecentSearchesRepositoryLocal: a class of type repository that deals with manage the local Room-database which pertains to the search history.
  • AISelector: a class of type Repository that takes care of managing the list of genres that the user usually looks at and updates it based on new occurrences. Allows the implementation of the "For You" section.
  • Filter: an internal class that allows the implementation of filters in an abstract way in the GameList fragment and in the Search fragment
  • AIModel: a class of type model that contains the information managed by the class AISelector for the implementation of the list of genres visited. The class contains, in addition to the string of gender, the associated weight, i.e. "how important" for the user that type of gender.
  • GameDetails: a class of type model that contains the incoming information from the IGDB API.
  • PlatformDetails: a class of type model that contains the detailed information regarding a Platform, including also a reference to a PlatformHardwareDetails.
  • PlatformHardwareDetails: a class of type Data-Class, it is only used to contain the hardware information of a platform, such as the PS4 for example
  • ItalianEnglishTranslator: a utility-type class that allows you to translate a text from English to Italian using the translate method. It is implemented through usage of the MLKit library.
  • StateInstanceSaver: this class is an internal class that serves to save the state of the various fragments, such as the search one, so that when you return to that fragment there is the search carried out with the previously selected filters. It uses a simple Hashmap, where the data necessary to recover the state of the fragment are saved.

Libraries

  • Firebase: service that allows the use of various libraries, those used are:
    • Firebase Authentication: library that manages the authentication service with all related services
    • Realtime Database: library with which it is possible to use the service Firebase Realtime Database. More specifically, the application saves inside the remote database all the ids of the favorite games, the ids of the last visited games and the ids of the last searches made.
    • Firebase Auth: library used to manage Auth, i.e. login, the registering a new user, lost password and changes of user data
  • igdb-api-jvm: library that allows the use of the IGDBWrapper class that allows communication with the IGDB database through the use of queries based on APICalypse, with related JSON responses.
  • kotlinx-coroutines: library used to take advantage of kotlin coroutines for deploy the app asynchronously. Used for example for requests from IGDBRepository class.
  • Picasso: Library for managing images and multimedia contents. Used for uploading screenshots, game covers and profile pictures of the user. Cache management is entrusted directly to the library
  • Room-database: library that allows the creation and interaction of databases internal to local storage.
  • TouchImageView: library that adds more functionality to ImageViews, such as the ability to zoom
  • Kotlinized LRU Cache: library that allows you to use the LRU Cache built-in in android, optimized for kotlin coroutines, used to maintain the cache for IGDBRepository calls.
  • Shimmer: Facebook library that adds the shimmer effect, used in loading for example games or while doing a search.
  • MLKit:translate: Google library that allows you to translate text, used to translate game description text.

Design

Registration, Login & Password recovery

When you first start the app, this section will open and a screen will be shown where it is possible to choose, using three buttons, between registering an account and logging in with an account previously created or using the app without an account and so log in as a guest.
The Login screen is made up of 2 text inputs, where the email and password are entered respectively, and if the user forgets the password, he can recover it by clicking on "forgot password?" on the login screen and, after entering the email with which you registered, firebase will send the user an email with a link to change the password.

First Page     Login     Register

It is possible to switch from the login screen to the registration screen and vice versa, by pressing on the words below "Register now" and "Login now" which will take him to the registration screen, which is made up of 4 textinputs where the user must enter the information required, i.e. email, a username, password and password confirmation. Also in this screen it is possible to go directly back to the login directly, in the same way as before.

Home page

This is the first screen that opens when logged in, whether as a guest or as a registered user, its functionality is to show the user a series of games divided into sections, i.e. the most voted, the best, the most awaited, the most loved by critics, the most popular, worst, newly released, and soon to be released, too if you are logged in with your account you will also have a section dedicated to games suggested based on your visits and your favourites.
When you press on a game cover, that game's detail screen will open.
The composition of the fragment is based on a ScrollView containing many within it RecyclerView, each for each category.

Home     GameList     GameList filters

From the home screen you can view some games of that particular category scrolling horizontally on the RecyclerView, also to be able to view more items of that category, in addition to having better navigability between them, you can press on section title. Within it there will be the possibility to apply filters on the games shown according to the selected criteria.

Game Details View

This section offers the possibility to see all the details of a video game, such as thumbnails, description, release date, platforms the game is available on, rating, and more. Furthermore there is also the possibility to see up to 10 games whose characteristics are similar to the game that is being observed.

GameDetails 1     GameDetails 2     GameDetails 3

Using the buttons at the top right of the page, you can share the game or add it to the user's favorites list. There are also dialogs, accessible via the appropriate button (the underlined text to indicate that an activity will take place), which show further details about each platform and collection of a videogame.

GameDetails collection     GameDetails platform

Search page

By clicking on the magnifying glass in the bottom navigation bar, you access the research section.
When first opened, the screen consists of only the searchbar and a filter button.
By clicking on the first, it is possible to search for the game you want by writing a string or a word that will be used by the search managed by the IGDB service itself.
While writing your query in the searchbar, they may also appear in one RecyclerView various suggestions based on the history of old searches made and/or up to 3 games found by the API among the most reviewed and that contain what you are looking for within their name.

Search     Search Suggestions     Search filters

If a search cronology is available, it will appear the first time you load the search screen. From there, you can manually delete single entries through the cross button they have on the right.

Once you have carried out your search normally or after clicking on one of the suggestions, will appear, still inside a RecyclerView (after a short animation of loading), the list of results related to it.
In case there are no results or suggestions, the application will warn the user through a screen.

Results are obviously not loaded all together, but the less relevant ones do come instead loaded as scrolling reaches the current bottom of the RecyclerView (i.e. the end of those already loaded), taking advantage of the pagination system present in the API itself.

By clicking on the Filters button instead, a side drawer will open from which it is possible to filter the results obtained from your search through various parameters, such as category, genre, platform, release date and others.

Settings page

From the bottom navigation bar, clicking on the user icon takes you to the screen profile management, in this situation two cases may occur.

If the user has logged in from here it will be possible to modify all the data relating to the profile, including the image, the user will then be able to choose from certain options such as consult and delete the list of games displayed and delete the history of searches, set the dark mode/light mode, change the language (Italian, English), log out and delete your account from the servers.

If the user is logged in as a guest he will only be able to consult and delete the displayed games, clear his search history and set dark/light mode, as well as of course the ability to log in.

User 1     User 2     User Guest

Email/Username/Password change

Fragments allow the user to modify all data relating to their account.
The data entered is compared with the data on firebase before making the change information.

Change Email     Change Username     Change Password

Chronology

History

The fragment History contains the list of visited games recently, from here it is possible to consult the details of each game by clicking on the desired item, for each of them some details such as the name, genre, rating and release date are already readily shown.

It is also possible to delete each item of this list by selecting the trashcan icon at the top right.

The list is saved in a hybrid way: the last 10 games visited are saved in the cloud via firebase (feature available only if the user has registered) in such a way that persist, even if only partially, following a change of device.











Favourites page

Favourites

The favourites page is accessible via the button with the heart icon in the bottom navigation bar.

References to the ID of the games in this list are saved on the database, this means that if the user needs to change phones, games still remain saved on the account and therefore accessible from any device.
















Adapters

FavoriteGridViewAdapter

FavouriteGridViewAdapter

Used to list favorite games in the favoriteFragment fragment, is structured in such a way as to show the cover of the video game with underlying its title and with the possibility of going to see the details of a game by pressing on the cover.




GamesBigRecyclerViewAdapter

GamesBigRecyclerViewAdapter

Used to list the games in the fragments SearchFragment and HistoryFragment, where the cover of the video game is shown alongside the title and superimposed on the cover, in the lower left corner the rating of the video game, all on a horizontal rectangle with the background cover with blur filter. In this case there is the possibility to go directly to see the details of a game by pressing the cover, too.


GameScreenshotsRecyclerViewAdapter

GameScreenshotsRecyclerViewAdapter

Used to display game images in the GameDetailsFragment, it just shows the screenshot in a recyclerview and if you press it, it shows the screenshot in full screen.





GamesRecyclerViewAdapter

GamesRecyclerViewAdapter

Used to display the game in a recyclerview in fragments MainPageFragment and GameDetailsFragment, like for FavoriteGridViewAdapters, it simply displays the cover and its title and the possibility of going to see the details of a game by pressing on its cover.





SuggestionRecyclerViewAdapter

GamesRecyclerViewAdapter

Used to show fragment hints in the fragment SearchFragment, it's simply composed of the query that have been made with the ability to search for that query if you click on it.








Navigation

Navigation

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages