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

view.entity-module.Polygon.js Maven / Gradle / Ivy

Go to download

Entity Manager module for the CodinGame engine toolkit. Simplify the management of shapes and drawings.

There is a newer version: 4.5.0
Show newest version
import { Shape } from './Shape.js'

export class Polygon extends Shape {
  constructor () {
    super()
    Object.assign(this.defaultState, {
      points: []
    })
  }

  initDisplay () {
    super.initDisplay()
    this.graphics.endFill()
  }

  updateDisplay (state, changed, globalData) {
    super.updateDisplay(state, changed, globalData)
    if (changed.lineWidth ||
      changed.lineColor ||
      changed.lineAlpha ||
      changed.fillColor ||
      changed.points) {
      this.graphics.clear()
      if (state.fillColor !== null) {
        this.graphics.beginFill(state.fillColor, state.fillAlpha)
      }

      this.graphics.lineStyle(state.lineWidth, state.lineColor, state.lineAlpha)
      this.graphics.drawPolygon(state.points.map(coord => coord * globalData.toWorldUnits))
      if (state.fillColor !== null) {
        this.graphics.endFill()
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy