Package org.terasology.network.internal

Source Code of org.terasology.network.internal.ServerInfoMessageImpl

/*
* Copyright 2014 MovingBlocks
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*  http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.terasology.network.internal;

import java.util.Collections;
import java.util.List;
import java.util.Map;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.terasology.naming.Name;
import org.terasology.naming.NameVersion;
import org.terasology.naming.Version;
import org.terasology.network.ServerInfoMessage;
import org.terasology.protobuf.NetData;
import org.terasology.world.internal.WorldInfo;

import com.google.common.collect.Lists;
import com.google.common.collect.Maps;

/**
* Default implementation of {@link ServerInfoMessage}.
* Wraps the Protocol Buffer implementation
* @author Martin Steiger
*/
class ServerInfoMessageImpl implements ServerInfoMessage {

    private static final Logger logger = LoggerFactory.getLogger(ServerInfoMessageImpl.class);

    private final NetData.ServerInfoMessage info;

    ServerInfoMessageImpl(NetData.ServerInfoMessage pbInfo) {
        this.info = pbInfo;
        this.info.getBlockIdList();
    }

    @Override
    public String getGameName() {
        return info.getGameName();
    }

    @Override
    public List<WorldInfo> getWorldInfoList() {
        List<WorldInfo> result = Lists.newArrayList();

        for (NetData.WorldInfo pbWorldInfo : info.getWorldInfoList()) {
            WorldInfo worldInfo = new WorldInfo();
            worldInfo.setTime(pbWorldInfo.getTime());
            worldInfo.setTitle(pbWorldInfo.getTitle());
            result.add(worldInfo);
        }

        return result;
    }

    @Override
    public List<String> getRegisterBlockFamilyList() {
        return Collections.unmodifiableList(info.getRegisterBlockFamilyList());
    }

    @Override
    public long getTime() {
        return info.getTime();
    }

    @Override
    public List<NameVersion> getModuleList() {
        List<NameVersion> result = Lists.newArrayList();

        for (NetData.ModuleInfo moduleInfo : info.getModuleList()) {
            if (!moduleInfo.hasModuleId() || !moduleInfo.hasModuleVersion()) {
                logger.error("Received incomplete module info");
            } else {
                Name id = new Name(moduleInfo.getModuleId());
                Version version = new Version(moduleInfo.getModuleVersion());
                result.add(new NameVersion(id, version));
            }
        }

        return result;
    }

    @Override
    public Map<Integer, String> getBlockIds() {
        Map<Integer, String> result = Maps.newHashMap();

        for (int i = 0; i < info.getBlockIdCount(); ++i) {
            result.put(info.getBlockId(i), info.getBlockName(i));
        }

        return result;
    }

    @Override
    public Map<Short, String> getBiomeIds() {
        Map<Short, String> result = Maps.newHashMap();

        for (int i = 0; i < info.getBiomeIdCount(); ++i) {
            int biomeShortId = info.getBiomeShortId(i);
            if (biomeShortId > Short.MAX_VALUE) {
                throw new IllegalStateException("Received an invalid biome id from the server: " + biomeShortId);
            }
            result.put((short) biomeShortId, info.getBiomeId(i));
        }

        return result;
    }

}
TOP

Related Classes of org.terasology.network.internal.ServerInfoMessageImpl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.