summaryrefslogtreecommitdiff
path: root/src/graphyx/gui/InfoPanel.scala
blob: 484f3d7a863fe9b18102e3e04a45260479f462f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * Graphyx
 * copyright (c) 2009 Jakob Odersky
 * made available under the MIT License
*/

package graphyx.gui

import scala.swing._
class InfoPanel(container: Container) extends BoxPanel(Orientation.Vertical){
  preferredSize = (200, 50)
  
  val out = new TextArea
  out.editable = false
  contents += out
  border = Swing.EmptyBorder(3,3,3,3)
  
  def update() = {
    out.text = "fps=" + container.scene.fps + "\n" + 
    			"t=" + container.scene.world.time.formatted("%f") + "\n"
    if (container.scene.world.overCWarning) {
      out.foreground = java.awt.Color.red
      out.text += "Warning: some bodies passed the speed of light! Simulation may be highly incorrect.\n"
    }
    else out.foreground = java.awt.Color.black
    for (r <- container.scene.world.monitorResults) out.text += r + "\n"
  }
}