All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.oscim.gdx.client.GwtGdxGraphics Maven / Gradle / Ivy

Go to download

OpenGL vector map library written in Java - running on Android, iOS, Desktop and within the browser.

There is a newer version: 0.20.0
Show newest version
/*
 * Copyright 2013 Hannes Janetzek
 * Copyright 2016-2018 devemux86
 * Copyright 2017 Longri
 *
 * This file is part of the OpenScienceMap project (http://www.opensciencemap.org).
 *
 * This program is free software: you can redistribute it and/or modify it under the
 * terms of the GNU Lesser General Public License as published by the Free Software
 * Foundation, either version 3 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License along with
 * this program. If not, see .
 */
package org.oscim.gdx.client;

import com.google.gwt.canvas.client.Canvas;
import com.google.gwt.canvas.dom.client.Context2d;
import com.google.gwt.canvas.dom.client.TextMetrics;

import org.oscim.backend.CanvasAdapter;
import org.oscim.backend.Platform;
import org.oscim.backend.canvas.Bitmap;
import org.oscim.backend.canvas.Paint;

import java.io.File;
import java.io.InputStream;

public class GwtGdxGraphics extends CanvasAdapter {

    public static boolean NO_STROKE_TEXT = false;

    static final Context2d ctx;

    static {
        Canvas canvas = Canvas.createIfSupported();
        canvas.setCoordinateSpaceWidth(1);
        canvas.setCoordinateSpaceHeight(1);
        ctx = canvas.getContext2d();
    }

    public static synchronized float getTextWidth(String text, String font) {
        ctx.setFont(font);
        TextMetrics tm = ctx.measureText(text);
        return (float) tm.getWidth();
    }

    @Override
    public Bitmap decodeBitmapImpl(InputStream inputStream) {
        // TODO
        return null;
    }

    @Override
    public Bitmap decodeBitmapImpl(InputStream inputStream, int width, int height, int percent) {
        // TODO
        return null;
    }

    @Override
    public Bitmap decodeSvgBitmapImpl(InputStream inputStream, int width, int height, int percent) {
        // TODO
        return null;
    }

    @Override
    public Bitmap loadBitmapAssetImpl(String relativePathPrefix, String src, int width, int height, int percent) {
        String pathName = (relativePathPrefix == null || relativePathPrefix.length() == 0 ? "" : relativePathPrefix + File.separatorChar) + src;
        return new GwtBitmap(pathName);
    }

    @Override
    public Paint newPaintImpl() {
        return new GwtPaint();
    }

    @Override
    public Bitmap newBitmapImpl(int width, int height, int format) {
        return new GwtBitmap(width, height, format);
    }

    @Override
    public org.oscim.backend.canvas.Canvas newCanvasImpl() {
        return new GwtCanvas();
    }

    public static void init() {
        CanvasAdapter.init(new GwtGdxGraphics());
        CanvasAdapter.platform = Platform.WEBGL;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy