mirror of
https://github.com/Floriansylvain/GoEvalCalc.git
synced 2026-08-19 11:43:25 +02:00
Initial Commit
This commit is contained in:
@@ -0,0 +1 @@
|
|||||||
|
*.exe
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
# Math Expression Evaluator
|
||||||
|
|
||||||
|
A simple, interactive math expression evaluator built with Go.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
Run the program and type your expression into the input field. Press Enter to evaluate.
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
- `2 + 2`
|
||||||
|
- `sin(pi/4)`
|
||||||
|
- `pow(2, 8)`
|
||||||
|
- `sqrt(64) + 10`
|
||||||
|
|
||||||
|
## Dependencies
|
||||||
|
|
||||||
|
- [expr-lang/expr](https://github.com/expr-lang/expr) - Expression evaluation
|
||||||
|
- [gdamore/tcell](https://github.com/gdamore/tcell) - Terminal handling
|
||||||
|
- [rivo/tview](https://github.com/rivo/tview) - Terminal UI components
|
||||||
|
|
||||||
|
## Controls
|
||||||
|
|
||||||
|
- Enter: Evaluate expression
|
||||||
|
- Esc/Ctrl+C: Exit application
|
||||||
+108
@@ -0,0 +1,108 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"math"
|
||||||
|
|
||||||
|
"github.com/expr-lang/expr"
|
||||||
|
"github.com/gdamore/tcell/v2"
|
||||||
|
"github.com/rivo/tview"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
app := tview.NewApplication()
|
||||||
|
|
||||||
|
env := map[string]any{
|
||||||
|
"abs": math.Abs,
|
||||||
|
"acos": math.Acos,
|
||||||
|
"asin": math.Asin,
|
||||||
|
"atan": math.Atan,
|
||||||
|
"atan2": math.Atan2,
|
||||||
|
"ceil": math.Ceil,
|
||||||
|
"cos": math.Cos,
|
||||||
|
"cosh": math.Cosh,
|
||||||
|
"exp": math.Exp,
|
||||||
|
"floor": math.Floor,
|
||||||
|
"log": math.Log,
|
||||||
|
"log10": math.Log10,
|
||||||
|
"max": math.Max,
|
||||||
|
"min": math.Min,
|
||||||
|
"mod": math.Mod,
|
||||||
|
"pow": math.Pow,
|
||||||
|
"round": math.Round,
|
||||||
|
"sin": math.Sin,
|
||||||
|
"sinh": math.Sinh,
|
||||||
|
"sqrt": math.Sqrt,
|
||||||
|
"tan": math.Tan,
|
||||||
|
"tanh": math.Tanh,
|
||||||
|
"pi": math.Pi,
|
||||||
|
"e": math.E,
|
||||||
|
}
|
||||||
|
|
||||||
|
title := tview.NewTextView()
|
||||||
|
title.SetText("🧮 [::b]Math Expression Evaluator[-]")
|
||||||
|
title.SetTextAlign(tview.AlignCenter)
|
||||||
|
title.SetDynamicColors(true)
|
||||||
|
title.SetBorder(true)
|
||||||
|
title.SetBorderColor(tcell.ColorLightBlue)
|
||||||
|
|
||||||
|
result := tview.NewTextView()
|
||||||
|
result.SetDynamicColors(true)
|
||||||
|
result.SetWrap(true)
|
||||||
|
result.SetChangedFunc(func() { app.Draw() })
|
||||||
|
result.SetBorder(true)
|
||||||
|
result.SetTitle("Result")
|
||||||
|
result.SetTitleAlign(tview.AlignLeft)
|
||||||
|
|
||||||
|
help := tview.NewTextView()
|
||||||
|
help.SetText("[yellow]Functions: sqrt, pow, abs, sin, cos, tan...\nConstants: pi, e")
|
||||||
|
help.SetDynamicColors(true)
|
||||||
|
help.SetWrap(true)
|
||||||
|
help.SetBorder(true)
|
||||||
|
help.SetTitle("Help")
|
||||||
|
help.SetTitleAlign(tview.AlignLeft)
|
||||||
|
|
||||||
|
input := tview.NewInputField()
|
||||||
|
input.SetLabel("Expression: ")
|
||||||
|
input.SetFieldWidth(60)
|
||||||
|
input.SetDoneFunc(func(key tcell.Key) {
|
||||||
|
if key == tcell.KeyEnter {
|
||||||
|
exprStr := input.GetText()
|
||||||
|
|
||||||
|
program, err := expr.Compile(exprStr, expr.Env(env))
|
||||||
|
if err != nil {
|
||||||
|
result.SetText(fmt.Sprintf("[red]Compile error: %v", err))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
output, err := expr.Run(program, env)
|
||||||
|
if err != nil {
|
||||||
|
result.SetText(fmt.Sprintf("[red]Runtime error: %v", err))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
result.SetText(fmt.Sprintf("[green]Result: %v", output))
|
||||||
|
}
|
||||||
|
})
|
||||||
|
input.SetBorder(true)
|
||||||
|
input.SetTitle("Input")
|
||||||
|
input.SetTitleAlign(tview.AlignLeft)
|
||||||
|
|
||||||
|
mainFlex := tview.NewFlex()
|
||||||
|
mainFlex.SetDirection(tview.FlexRow)
|
||||||
|
mainFlex.AddItem(title, 3, 1, false)
|
||||||
|
mainFlex.AddItem(input, 5, 0, true)
|
||||||
|
mainFlex.AddItem(result, 5, 0, false)
|
||||||
|
mainFlex.AddItem(help, 3, 1, false)
|
||||||
|
|
||||||
|
app.SetRoot(mainFlex, true)
|
||||||
|
app.SetInputCapture(func(event *tcell.EventKey) *tcell.EventKey {
|
||||||
|
if event.Key() == tcell.KeyEsc || event.Key() == tcell.KeyCtrlC {
|
||||||
|
app.Stop()
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return event
|
||||||
|
})
|
||||||
|
|
||||||
|
if err := app.Run(); err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
module github.com/Floriansylvain/GoEvalCalc
|
||||||
|
|
||||||
|
go 1.24.1
|
||||||
|
|
||||||
|
require (
|
||||||
|
github.com/Knetic/govaluate v3.0.0+incompatible // indirect
|
||||||
|
github.com/expr-lang/expr v1.17.2 // indirect
|
||||||
|
github.com/gdamore/encoding v1.0.0 // indirect
|
||||||
|
github.com/gdamore/tcell/v2 v2.7.1 // indirect
|
||||||
|
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
||||||
|
github.com/mattn/go-runewidth v0.0.15 // indirect
|
||||||
|
github.com/rivo/tview v0.0.0-20250330220935-949945f8d922 // indirect
|
||||||
|
github.com/rivo/uniseg v0.4.7 // indirect
|
||||||
|
golang.org/x/sys v0.17.0 // indirect
|
||||||
|
golang.org/x/term v0.17.0 // indirect
|
||||||
|
golang.org/x/text v0.14.0 // indirect
|
||||||
|
)
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
github.com/Knetic/govaluate v3.0.0+incompatible h1:7o6+MAPhYTCF0+fdvoz1xDedhRb4f6s9Tn1Tt7/WTEg=
|
||||||
|
github.com/Knetic/govaluate v3.0.0+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0=
|
||||||
|
github.com/expr-lang/expr v1.17.2 h1:o0A99O/Px+/DTjEnQiodAgOIK9PPxL8DtXhBRKC+Iso=
|
||||||
|
github.com/expr-lang/expr v1.17.2/go.mod h1:8/vRC7+7HBzESEqt5kKpYXxrxkr31SaO8r40VO/1IT4=
|
||||||
|
github.com/gdamore/encoding v1.0.0 h1:+7OoQ1Bc6eTm5niUzBa0Ctsh6JbMW6Ra+YNuAtDBdko=
|
||||||
|
github.com/gdamore/encoding v1.0.0/go.mod h1:alR0ol34c49FCSBLjhosxzcPHQbf2trDkoo5dl+VrEg=
|
||||||
|
github.com/gdamore/tcell/v2 v2.7.1 h1:TiCcmpWHiAU7F0rA2I3S2Y4mmLmO9KHxJ7E1QhYzQbc=
|
||||||
|
github.com/gdamore/tcell/v2 v2.7.1/go.mod h1:dSXtXTSK0VsW1biw65DZLZ2NKr7j0qP/0J7ONmsraWg=
|
||||||
|
github.com/lucasb-eyer/go-colorful v1.2.0 h1:1nnpGOrhyZZuNyfu1QjKiUICQ74+3FNCN69Aj6K7nkY=
|
||||||
|
github.com/lucasb-eyer/go-colorful v1.2.0/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0=
|
||||||
|
github.com/mattn/go-runewidth v0.0.15 h1:UNAjwbU9l54TA3KzvqLGxwWjHmMgBUVhBiTjelZgg3U=
|
||||||
|
github.com/mattn/go-runewidth v0.0.15/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
|
||||||
|
github.com/rivo/tview v0.0.0-20250330220935-949945f8d922 h1:SMyqkaRfpE8ZQUSRTZKO3uN84xov++OGa+e3NCksaQw=
|
||||||
|
github.com/rivo/tview v0.0.0-20250330220935-949945f8d922/go.mod h1:02iFIz7K/A9jGCvrizLPvoqr4cEIx7q54RH5Qudkrss=
|
||||||
|
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
|
||||||
|
github.com/rivo/uniseg v0.4.3/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
|
||||||
|
github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ=
|
||||||
|
github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
|
||||||
|
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
|
||||||
|
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
||||||
|
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
|
||||||
|
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
|
||||||
|
golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
|
||||||
|
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
||||||
|
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
||||||
|
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
|
||||||
|
golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
|
||||||
|
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
|
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
|
golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
|
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||||
|
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
|
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.17.0 h1:25cE3gD+tdBA7lp7QfhuV+rJiE9YXTcS3VG1SqssI/Y=
|
||||||
|
golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||||
|
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||||
|
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
|
||||||
|
golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=
|
||||||
|
golang.org/x/term v0.17.0 h1:mkTF7LCd6WGJNL3K1Ad7kwxNfYAW6a8a8QqtMblp/4U=
|
||||||
|
golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk=
|
||||||
|
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||||
|
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||||
|
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
|
||||||
|
golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
|
||||||
|
golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
|
||||||
|
golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
|
||||||
|
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
||||||
|
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
|
||||||
|
golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc=
|
||||||
|
golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU=
|
||||||
|
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
Reference in New Issue
Block a user