Return updated state object
Return error when player exists in dictionary Modifications to list call Debug RPC method Debug RPC method -S Include client changes
This commit is contained in:
@ -36,9 +36,9 @@ func (m *Match) MatchInit(ctx context.Context, logger runtime.Logger, db *sql.DB
|
||||
func (m *Match) MatchJoinAttempt(ctx context.Context, logger runtime.Logger, db *sql.DB, nk runtime.NakamaModule, dispatcher runtime.MatchDispatcher, tick int64, state interface{}, presence runtime.Presence, metadata map[string]string) (interface{}, bool, string) {
|
||||
mState, _ := state.(*MatchState)
|
||||
if _, ok := mState.presences[presence.GetUserId()]; ok {
|
||||
return mState, true, ""
|
||||
} else {
|
||||
return mState, false, "User already logged in."
|
||||
} else {
|
||||
return mState, true, ""
|
||||
}
|
||||
|
||||
}
|
||||
@ -48,7 +48,7 @@ func (m *Match) MatchJoin(ctx context.Context, logger runtime.Logger, db *sql.DB
|
||||
for _, precense := range presences {
|
||||
mState.presences[precense.GetUserId()] = precense
|
||||
}
|
||||
return state
|
||||
return mState
|
||||
}
|
||||
|
||||
func (m *Match) MatchLeave(ctx context.Context, logger runtime.Logger, db *sql.DB, nk runtime.NakamaModule, dispatcher runtime.MatchDispatcher, tick int64, state interface{}, presences []runtime.Presence) interface{} {
|
||||
@ -56,7 +56,7 @@ func (m *Match) MatchLeave(ctx context.Context, logger runtime.Logger, db *sql.D
|
||||
for _, presence := range presences {
|
||||
delete(mState.presences, presence.GetUserId())
|
||||
}
|
||||
return state
|
||||
return mState
|
||||
}
|
||||
|
||||
func (m *Match) MatchLoop(ctx context.Context, logger runtime.Logger, db *sql.DB, nk runtime.NakamaModule, dispatcher runtime.MatchDispatcher, tick int64, state interface{}, messages []runtime.MatchData) interface{} {
|
||||
|
@ -11,37 +11,41 @@ func getFirstWorld(ctx context.Context, logger runtime.Logger, nk runtime.Nakama
|
||||
// List existing matches
|
||||
// that have been 1 & 4 players
|
||||
minSize := 1
|
||||
maxSize := 4
|
||||
matches, listErr := nk.MatchList(ctx, 1, false, "", &minSize, &maxSize, "") //local matches = nakama.match_list()
|
||||
|
||||
// Return if listing error
|
||||
if listErr != nil {
|
||||
logger.Printf("Failed to list matches when grabing first world! Error: %v\n", listErr)
|
||||
return "", listErr
|
||||
}
|
||||
|
||||
// If no matches exist, create one
|
||||
if len(matches) <= 0 {
|
||||
|
||||
// Create match
|
||||
//params := map[string]interface{}{}
|
||||
matchID, createErr := nk.MatchCreate(ctx, "control", map[string]interface{}{})
|
||||
//return nakama.match_create("world_control", {})
|
||||
|
||||
// Return if creation error
|
||||
if createErr != nil {
|
||||
logger.Printf("Failed to create match when grabing first world! Error: %v\n", createErr)
|
||||
return "", createErr
|
||||
}
|
||||
logger.Info("Successfully created new match!")
|
||||
|
||||
// Return newly created match
|
||||
return matchID, nil
|
||||
|
||||
maxSize := 31
|
||||
//5, false, "", &minSize, &maxSize, ""
|
||||
if matches, err := nk.MatchList(ctx, 1, true, "", &minSize, &maxSize, ""); err != nil {
|
||||
logger.Printf("Failed to list matches when grabing first world! Error: %v\n", err)
|
||||
return "", err
|
||||
} else {
|
||||
|
||||
// Return first found match
|
||||
return matches[0].GetMatchId(), nil
|
||||
//For debug purposes
|
||||
for _, match := range matches {
|
||||
logger.Info("Found match with id: %s", match.GetMatchId())
|
||||
}
|
||||
|
||||
// If no matches exist, create one
|
||||
if len(matches) <= 0 {
|
||||
|
||||
// Create match
|
||||
//params := map[string]interface{}{}
|
||||
matchID, createErr := nk.MatchCreate(ctx, "control", map[string]interface{}{})
|
||||
//return nakama.match_create("world_control", {})
|
||||
|
||||
// Return if creation error
|
||||
if createErr != nil {
|
||||
logger.Printf("Failed to create match when grabing first world! Error: %v\n", createErr)
|
||||
return "", createErr
|
||||
}
|
||||
logger.Info("Successfully created new match!")
|
||||
|
||||
// Return newly created match
|
||||
return matchID, nil
|
||||
|
||||
} else {
|
||||
|
||||
// Return first found match
|
||||
return matches[0].GetMatchId(), nil
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user