confetty/simulation/simulation.go

104 lines
2.3 KiB
Go
Raw Permalink Normal View History

2021-08-08 18:08:28 -07:00
package simulation
2021-08-08 18:06:10 -07:00
import (
"fmt"
"strings"
2021-10-31 11:57:51 -07:00
"time"
2021-11-04 21:24:58 -07:00
"github.com/charmbracelet/harmonica"
2021-12-31 14:23:37 -08:00
"github.com/charmbracelet/lipgloss"
2021-08-08 18:06:10 -07:00
)
type System struct {
Frame Frame
Particles []*Particle
2021-08-08 18:06:10 -07:00
}
type Particle struct {
2021-10-31 11:57:51 -07:00
Char string
2021-12-31 14:23:37 -08:00
Color lipgloss.Color
2021-10-31 11:57:51 -07:00
TailChar string
2021-11-04 21:24:58 -07:00
Physics *harmonica.Projectile
2021-10-31 11:57:51 -07:00
Hidden bool
Shooting bool
2021-12-31 14:23:37 -08:00
ExplosionCall func(color lipgloss.Color, x, y float64, width, height int) []*Particle
2021-08-08 18:06:10 -07:00
}
type Frame struct {
Width int
Height int
}
2021-10-31 11:57:51 -07:00
func FPS(n int) float64 {
return (time.Second / time.Duration(n)).Seconds()
}
func RemoveParticleFromArray(s []*Particle, i int) []*Particle {
s[i] = nil
s[i] = s[len(s)-1]
return s[:len(s)-1]
}
2021-08-08 18:06:10 -07:00
func (s *System) Update() {
for i := len(s.Particles) - 1; i >= 0; i-- {
2021-10-31 11:57:51 -07:00
p := s.Particles[i]
2021-11-04 21:24:58 -07:00
pos := p.Physics.Position()
2021-10-31 11:57:51 -07:00
// if the shooting particle is slow enough then hide it and call the explosion function
2021-11-04 21:24:58 -07:00
if !p.Hidden && p.Shooting && p.Physics.Velocity().Y > -3 {
2021-10-31 11:57:51 -07:00
p.Hidden = true
if p.ExplosionCall != nil {
2021-12-31 14:23:37 -08:00
s.Particles = append(s.Particles, p.ExplosionCall(p.Color, pos.X, pos.Y, s.Frame.Width, s.Frame.Height)...)
2021-10-31 11:57:51 -07:00
}
}
// remove particles that are hidden or out of the side/bottom of the frame
if p.Hidden || pos.X > float64(s.Frame.Width) || pos.X < 0 || pos.Y > float64(s.Frame.Height) {
s.Particles = RemoveParticleFromArray(s.Particles, i)
} else {
s.Particles[i].Physics.Update()
}
2021-08-08 18:06:10 -07:00
}
}
func (s *System) Visible(p *Particle) bool {
2021-11-04 21:24:58 -07:00
pos := p.Physics.Position()
x := int(pos.X)
y := int(pos.Y)
2021-10-31 11:57:51 -07:00
return !p.Hidden && y >= 0 && y < s.Frame.Height-1 && x >= 0 && x < s.Frame.Width-1
2021-08-08 18:06:10 -07:00
}
func (s *System) Render() string {
var out strings.Builder
plane := make([][]string, s.Frame.Height)
for i := range plane {
plane[i] = make([]string, s.Frame.Width)
}
for _, p := range s.Particles {
if s.Visible(p) {
2021-11-04 21:24:58 -07:00
pos := p.Physics.Position()
plane[int(pos.Y)][int(pos.X)] = p.Char
2021-10-31 11:57:51 -07:00
if p.Shooting {
2021-11-04 21:24:58 -07:00
l := -int(p.Physics.Velocity().Y)
2021-10-31 11:57:51 -07:00
for i := 1; i < l; i++ {
2021-11-04 21:24:58 -07:00
y := int(pos.Y) + i
2021-10-31 11:57:51 -07:00
if y > 0 && y < s.Frame.Height-1 {
2021-11-04 21:24:58 -07:00
plane[y][int(pos.X)] = p.TailChar
2021-10-31 11:57:51 -07:00
}
}
}
2021-08-08 18:06:10 -07:00
}
}
for i := range plane {
for _, col := range plane[i] {
if col == "" {
fmt.Fprint(&out, " ")
} else {
fmt.Fprint(&out, col)
}
}
fmt.Fprint(&out, "\n")
}
return out.String()
}