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

com.metsci.glimpse.examples.misc.DynamicPointPainterExample Maven / Gradle / Ivy

/*
 * Copyright (c) 2016, Metron, Inc.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *     * Redistributions of source code must retain the above copyright
 *       notice, this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above copyright
 *       notice, this list of conditions and the following disclaimer in the
 *       documentation and/or other materials provided with the distribution.
 *     * Neither the name of Metron, Inc. nor the
 *       names of its contributors may be used to endorse or promote products
 *       derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL METRON, INC. BE LIABLE FOR ANY
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
package com.metsci.glimpse.examples.misc;

import static com.metsci.glimpse.util.logging.LoggerUtils.logInfo;

import java.util.Collection;
import java.util.logging.Logger;

import com.metsci.glimpse.axis.Axis2D;
import com.metsci.glimpse.axis.listener.RateLimitedAxisListener2D;
import com.metsci.glimpse.examples.Example;
import com.metsci.glimpse.layout.GlimpseLayoutProvider;
import com.metsci.glimpse.painter.info.FpsPainter;
import com.metsci.glimpse.painter.shape.DynamicPointSetPainter;
import com.metsci.glimpse.painter.shape.DynamicPointSetPainter.BulkPointAccumulator;
import com.metsci.glimpse.plot.SimplePlot2D;
import com.metsci.glimpse.support.color.GlimpseColor;

/**
 * 

Demonstrates use of DynamicPointSetPainter. This painter is useful when painting * large sets of points which can change dynamically and must be individually colored.

* *

TrackPainter is another option for painting large numbers of points, but it can only * efficiently draw large groups of points with a single color. ShadedPointPainter allows * even more control over the coloring of points (via a shader) but does not allow easy * dynamic addition and removal of points.

* * @author ulman */ public class DynamicPointPainterExample implements GlimpseLayoutProvider { private static final Logger logger = Logger.getLogger( DynamicPointPainterExample.class.getName( ) ); public static void main( String[] args ) throws Exception { Example.showWithSwing( new DynamicPointPainterExample( ) ); } @Override public SimplePlot2D getLayout( ) { SimplePlot2D plot = new SimplePlot2D( ); plot.getAxis( ).set( -1, 2, -1, 2 ); final DynamicPointSetPainter painter = new DynamicPointSetPainter( ); plot.addPainter( painter ); plot.addPainter( new FpsPainter( ) ); ( new Thread( ) { int count = 0; public void run( ) { try { while ( count < 50000 ) { BulkPointAccumulator accum = new BulkPointAccumulator( ); float[] color = GlimpseColor.fromColorRgba( ( float ) Math.random( ), ( float ) Math.random( ), ( float ) Math.random( ), ( float ) Math.random( ) ); for ( int i = 0; i < 500; i++ ) { accum.add( count++, ( float ) Math.random( ), ( float ) Math.random( ), color ); } painter.putPoints( accum ); try { Thread.sleep( 20 ); } catch ( InterruptedException e ) { } logger.info( "Total Points: " + count ); } } catch ( Exception e ) { e.printStackTrace( ); } } } ).start( ); plot.addAxisListener( new RateLimitedAxisListener2D( ) { @Override public void axisUpdatedRateLimited( Axis2D axis ) { double centerX = axis.getAxisX( ).getSelectionCenter( ); double sizeX = axis.getAxisX( ).getSelectionSize( ); double centerY = axis.getAxisY( ).getSelectionCenter( ); double sizeY = axis.getAxisY( ).getSelectionSize( ); Collection selection = painter.getGeoRange( centerX - sizeX / 2.0, centerX + sizeX / 2.0, centerY - sizeY / 2.0, centerY + sizeY / 2.0 ); logInfo( logger, "Selected Ids: %s", selection ); } } ); return plot; } }