clientcommunicator.operations.BuyDevCardRequest.java Source code

Java tutorial

Introduction

Here is the source code for clientcommunicator.operations.BuyDevCardRequest.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package clientcommunicator.operations;

import com.google.gson.JsonObject;
import com.google.gson.JsonParser;
import model.player.PlayerIdx;
import org.json.JSONException;

/**
 *
 * @author Michael
 */
public class BuyDevCardRequest implements IJSONSerializable {

    private PlayerIdx playerIndex;

    /**
     *
     * @param playerIndex The index of the player that wants to build a development card.
     */
    public BuyDevCardRequest(PlayerIdx playerIndex) {
        this.playerIndex = playerIndex;
    }

    public BuyDevCardRequest() {

    }

    @Override
    public String serialize() {
        String serializing = "{type: \"buyDevCard\", playerIndex: " + playerIndex.getIndex() + "}";
        return serializing;
    }

    /**
     *
     * @return The index of the player that wants to build a development card.
     */
    public PlayerIdx getPlayerIndex() {
        return playerIndex;
    }

    @Override
    public void deserialize(String JSON) throws JSONException {
        JsonObject obj = new JsonParser().parse(JSON).getAsJsonObject();
        this.playerIndex = new PlayerIdx(obj.get("playerIndex").getAsInt());
    }
}