Meet react-native-game-center
This is a fork of garrettmac/react-native-game-center
. It contains some further work, as well as some refactoring. It is, however, a work in progress, and some features beyond simple login (leatherboards) may not work correctly in it's current state. Patches are welcome! It is not currently published on npm.
- Installation
- Getting Started
- Basic Usage
- Init Method
- Player Methods
- Leaderboard Methods
- Achievements Methods
In your project root, run:
yarn add react-native-game-center
react-native link react-native-game-center
If you need help setting up GameCenter within iTunes Connect, see SETUP.md.
You may want to clone this repo and play with the example project:
$ git clone https://github.com/miracle2k/react-native-game-center
$ cd react-native-game-center/GameCenterExample
$ yarn install
$ npm start
import GameCenter from "react-native-game-center"
// The event handler will be called whenever the authentication status changes,
// and often, when it did not. For example, every time your app returns from
// the background, GameKit will call this, because the user may have logged out.
GameCenter.addListener('onAuthenticate', ({isAuthenticated}) => {
if (!isAuthenticated) {
Logout();
}
});
// There are two ways to get started:
// The init method will check if the user is already logged in, and if so, the
// user will see a "Welcome back" message from GameCenter. The promise will
// tell if whether they are or are not authenticated.
//
// If they are, you can then do things like call `getPlayer()`.
GameCenter.init().then(({isAuthenticated}) => {
...
});
// The authenticate method can be called in addition or instead of "init": It
// will, if the user is not logged in, show the GameCenter login screen.
Initializes GameCenter functionality, and immediately tries to see if the current user
is already logged into your app. If so, GameKit will show a "Welcome back" message. If
the user is not yet authenticated, you can call authenticate()
to show the login
screen.
GameCenter.init()
.then(console.log)
.catch(console.warn)
Same as init()
, but will show a GameCenter login screen if the user is not yet authorized.
GameCenter.authenticate()
.then(console.log)
.catch(console.warn)
Returns the authenticated user, or null
if no user is authenticated.
GameCenter.getPlayer().then(player=>{
console.log("player: ", player);
})
{alias: "Garrettmacmac", displayName: "Me", playerID: "G:8135064222"}
Gets logged player image if available. Most players don't have one.
No Parameters
GameCenter.getPlayerImage().then(image=>{
console.log("image: ", image);
})
{image: "/path/to/image.png"}
Error fetching player image
Gets a list of players. Most games don't have this anymore as Apple took away the game center App. Now you see lots of users connect via Facebook, SMS and by geolocation.
No Parameters
GameCenter.getPlayerFriends().then(friends=>{
console.log("friends: ", friends);
})
I don't know what this looks like, as I don't have friends 😫 and Apple said they are depreciating support for this is new versions.
Success
[...array of friends]
or
undefined
Failed
Error fetching player friends
Opens Game Center Modal on Leaderboard Page
No Parameters
GameCenter.openLeaderboardModal()
.then(success=>{})//is open
.catch(error=>{})//could not open
opened leaderboard modal
opened leaderboard modal
Submit progress of users leaderboard
Name | Required | Default | Description |
---|---|---|---|
score | Yes | n/a | some number to track for leaderboard |
leaderboardIdentifier | No* (see Response) | leaderboardIdentifier set up in Itunes Connect |
Basic
let options={score:50};
//reverts to default leaderboardIdentifier set up in init()
GameCenter.submitLeaderboardScore(options)
//now update state
this.setState(options)
Advanced
let options={
score:50,
leaderboardIdentifier:"some_other_leaderboard"
};
GameCenter.submitLeaderboardScore(options)
.then(res=>{
if(res==="Successfully submitted score")
this.setState({score:50})
})
.catch(console.warn("Users progress is not being tracked due to error."))
Success
"Successfully submitted score"
Failed
"Error submitting score."
Get information about certain player ids on the leaderboard
Name | Required | Default | Description |
---|---|---|---|
playerIds[] | Yes | n/a | An array of player ids to recieve data for |
leaderboardIdentifier | No if set in init | Set in init | leaderboardIdentifier set up in Itunes Connect |
Basic
let options={
playerIds: ["player_1","player_2"], //Please note that this is the player id as set by apple and not the user name
leaderboardIdentifier:"some_other_leaderboard" //Optional
};
GameCenter.getLeaderboardPlayers(options)
.then(res=>{
this.setState({players:res})
})
.catch(console.warn("Leaderboard fetch failed"))
Success
[
{
"rank":"rank of player on global leaderboard",
"value":"score of the player on the leaderboard",
"displayName":"display name of the player",
"alias":"alias of the player",
"playerID":"id of the player"
}
]
Failed
"Error getting leaderboard players."
Get information about top players on the leaderboard
Name | Required | Default | Description |
---|---|---|---|
count | Yes | n/a | Anmount of top players to fetch |
leaderboardIdentifier | No if set in init | Set in init | leaderboardIdentifier set up in Itunes Connect |
Basic
let options={
count:4,
leaderboardIdentifier:"some_other_leaderboard" //Optional
};
GameCenter.getLeaderboardPlayers(options)
.then(res=>{
this.setState({topPlayers:res})
})
.catch(console.warn("Leaderboard fetch failed"))
Success
[
{
"rank":"rank of player on global leaderboard",
"value":"score of the player on the leaderboard",
"displayName":"display name of the player",
"alias":"alias of the player",
"playerID":"id of the player"
}
]
Failed
"Error getting top leaderboard players."
Opens Game Center Modal on Leaderboard Page
No Parameters
GameCenter.openAchievementModal()
.then(success=>{})//is open
.catch(error=>{})//could not open
Success
opened achievement modal
Failed
opened achievement modal
Gets players achievements if completed more than 0%.
You must declare submitAchievementScore
at least once before calling this.
No Parameters
GameCenter.getAchievements()
.then(achievements=>{
console.log(achievements)
})
.catch(error=>{})//failed
[{"showsCompletionBanner":false,"lastReportedDate":1506301241432,"completed":true,"percentComplete":100,"identifier":"novice_award"},{"showsCompletionBanner":false,"lastReportedDate":1506301211362,"completed":false,"percentComplete":5,"identifier":"pro_award"}]
or
[]
Resets the players achievements.
Name | Required | Default | Description |
---|---|---|---|
hideAlert | No | {hideAlert:false} |
Hide reset confirmation prompt |
Basic
//Triggers confirmation prompt
GameCenter.resetAchievements()
// hides confirmation prompt
GameCenter.resetAchievements({hideAlert:true})
Advanced
GameCenter.resetAchievements(res=>{
if(res.resetAchievements){
do something if user reset achievements
}
})
.catch(alert("Could not reset achievements at this time. Try again later."))
If you pass in {hideAlert:true}
into GameCenter.resetAchievements()
Method OR the you don't pass in the hideAlert
parameter and player presses "Reset"
{"resetAchievements":true,"message":"User achievements reset"}
If you don't pass in the hideAlert
parameter and player presses "No!"
{"resetAchievements":false,"message":"User achievements not reset"}
Submit progress of users achievements
Name | Required | Default | Description |
---|---|---|---|
percentComplete | Yes | n/a | number, float, or string of the percent achievement is complete. Range 1-100 |
achievementIdentifier | No* (see Response) | achievementIdentifier set up in Itunes Connect |
|
hideCompletionBanner | No | false |
Hides Game center banner when complete |
let options={
percentComplete:50,
achievementIdentifier:"novice_award"
};
GameCenter.submitAchievementScore(options).then(res=>{
if(res){
//success
}
})
.catch(alert("Could not update your achievements at this time. Try again later."))
Success
[null]
Not required if achievementIdentifier
set as default in init()
. achievementIdentifier
always reverts to default unless defended. However, will reject promise if not passed in init()
or submitAchievementScore()
function
Failed
No Game Center `achievementIdentifier` passed and no default set
ADD METHODS
[ ] getLeaderboardPlayers() [ ] invite() [ ] challengeComposer() [ ] findScoresOfFriendsToChallenge()