2021-08-07 01:24:56 +00:00
|
|
|
package confetty
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"math/rand"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2021-08-07 02:08:18 +00:00
|
|
|
"github.com/maaslalani/confetty/pkg/array"
|
2021-08-07 02:00:08 +00:00
|
|
|
"github.com/maaslalani/confetty/pkg/physics"
|
|
|
|
|
2021-08-07 01:24:56 +00:00
|
|
|
"github.com/charmbracelet/bubbles/viewport"
|
|
|
|
tea "github.com/charmbracelet/bubbletea"
|
|
|
|
"github.com/charmbracelet/lipgloss"
|
|
|
|
"golang.org/x/term"
|
|
|
|
)
|
|
|
|
|
2021-08-07 02:08:18 +00:00
|
|
|
const fps = 60.0
|
2021-08-07 01:24:56 +00:00
|
|
|
|
2021-08-07 02:08:18 +00:00
|
|
|
var (
|
|
|
|
colors = []string{"#a864fd", "#29cdff", "#78ff44", "#ff718d", "#fdff6a"}
|
|
|
|
characters = []string{"▄", "▀", "█"} // "▓", "▒", "░"}
|
|
|
|
)
|
2021-08-07 01:24:56 +00:00
|
|
|
|
|
|
|
type frameMsg time.Time
|
|
|
|
|
|
|
|
func animate() tea.Cmd {
|
|
|
|
return tea.Tick(time.Second/fps, func(t time.Time) tea.Msg {
|
|
|
|
return frameMsg(t)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-08-07 02:25:00 +00:00
|
|
|
func wait(d time.Duration) tea.Cmd {
|
2021-08-07 01:24:56 +00:00
|
|
|
return func() tea.Msg {
|
2021-08-07 02:25:00 +00:00
|
|
|
time.Sleep(d)
|
2021-08-07 01:24:56 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type model struct {
|
|
|
|
particles []*Particle
|
|
|
|
viewport viewport.Model
|
|
|
|
}
|
|
|
|
|
|
|
|
type Particle struct {
|
2021-08-07 02:00:08 +00:00
|
|
|
char string
|
|
|
|
physics *physics.Physics
|
|
|
|
color lipgloss.Color
|
2021-08-07 01:24:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func InitialModel() model {
|
|
|
|
particles := []*Particle{}
|
|
|
|
|
|
|
|
width, height, err := term.GetSize(0)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < 25; i++ {
|
|
|
|
x := float64(width / 2)
|
|
|
|
y := float64(height / 2)
|
|
|
|
|
|
|
|
p := &Particle{
|
2021-08-07 02:00:08 +00:00
|
|
|
physics: physics.New(
|
|
|
|
physics.Vector{X: x, Y: y},
|
|
|
|
physics.Vector{X: (rand.Float64() - 0.5) * 100, Y: (rand.Float64() - 0.5) * 100},
|
|
|
|
physics.Vector(physics.Gravity),
|
|
|
|
fps,
|
|
|
|
),
|
2021-08-07 02:08:18 +00:00
|
|
|
char: lipgloss.NewStyle().
|
|
|
|
Foreground(lipgloss.Color(array.Sample(colors))).
|
|
|
|
Render(array.Sample(characters)),
|
2021-08-07 01:24:56 +00:00
|
|
|
}
|
2021-08-07 02:08:18 +00:00
|
|
|
|
2021-08-07 01:24:56 +00:00
|
|
|
particles = append(particles, p)
|
|
|
|
}
|
|
|
|
|
|
|
|
return model{particles: particles}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m model) Init() tea.Cmd {
|
2021-08-07 02:25:00 +00:00
|
|
|
return tea.Sequentially(wait(time.Second), animate())
|
2021-08-07 01:24:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
|
|
|
switch msg := msg.(type) {
|
|
|
|
case tea.KeyMsg:
|
|
|
|
return m, tea.Quit
|
|
|
|
case frameMsg:
|
|
|
|
for _, p := range m.particles {
|
2021-08-07 02:00:08 +00:00
|
|
|
p.physics.Update()
|
2021-08-07 01:24:56 +00:00
|
|
|
}
|
|
|
|
return m, animate()
|
|
|
|
case tea.WindowSizeMsg:
|
|
|
|
m.viewport.Width = msg.Width
|
|
|
|
m.viewport.Height = msg.Height
|
|
|
|
return m, nil
|
|
|
|
default:
|
|
|
|
return m, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m model) View() string {
|
|
|
|
if m.viewport.Height <= 0 || m.viewport.Width <= 0 {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
var out strings.Builder
|
|
|
|
grid := make([][]string, m.viewport.Height)
|
|
|
|
for i := range grid {
|
|
|
|
grid[i] = make([]string, m.viewport.Width)
|
|
|
|
}
|
|
|
|
for _, p := range m.particles {
|
2021-08-07 02:00:08 +00:00
|
|
|
y := p.physics.PosY()
|
|
|
|
x := p.physics.PosX()
|
2021-08-07 01:24:56 +00:00
|
|
|
if y < 0 || x < 0 || x >= m.viewport.Width-1 || y >= m.viewport.Height-1 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
grid[y][x] = p.char
|
|
|
|
}
|
|
|
|
for i := range grid {
|
|
|
|
for _, col := range grid[i] {
|
|
|
|
if col == "" {
|
|
|
|
fmt.Fprint(&out, " ")
|
|
|
|
} else {
|
|
|
|
fmt.Fprint(&out, col)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fmt.Fprint(&out, "\n")
|
|
|
|
}
|
|
|
|
return out.String()
|
|
|
|
}
|