Compare commits
No commits in common. "39ab47530e5889766b8d0dd2de6cc0ca001a9e29" and "5bb8e2c4cefb316893d502b0d9c9f2fd7525bf21" have entirely different histories.
39ab47530e
...
5bb8e2c4ce
|
@ -28,7 +28,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|||
|
||||
[[package]]
|
||||
name = "daisycalc"
|
||||
version = "1.1.4"
|
||||
version = "1.1.2"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"num",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "daisycalc"
|
||||
version = "1.1.4"
|
||||
version = "1.1.2"
|
||||
edition = "2021"
|
||||
build = "buildscript/main.rs"
|
||||
license = "GPL-3.0-only"
|
||||
|
|
18
Makefile
|
@ -1,18 +0,0 @@
|
|||
release:
|
||||
cargo build --release
|
||||
|
||||
test:
|
||||
cargo test
|
||||
|
||||
run:
|
||||
cargo run
|
||||
|
||||
wasm:
|
||||
wasm-pack build --release --target web --out-dir server/pkg
|
||||
|
||||
publish:
|
||||
cargo test
|
||||
cargo publish
|
||||
|
||||
docker:
|
||||
docker build ./server -t git.betalupi.com/mark/daisy
|
|
@ -1,4 +1,4 @@
|
|||
![](./server/site/resources/readme-banner.png)
|
||||
![](./site/misc/readme-banner.png)
|
||||
|
||||
A high-precision scientific calculator with support for units, derivatives, and more.
|
||||
|
||||
|
|
16
TODO.md
|
@ -1,4 +1,5 @@
|
|||
## Version Bump checklist
|
||||
- TODO: build and publish script
|
||||
- update Cargo.toml
|
||||
- run cargo test
|
||||
- commit
|
||||
|
@ -6,9 +7,12 @@
|
|||
- merge
|
||||
- git tag -a v1.0.0 -m "Version 1.0.0" on merge commit
|
||||
- cargo publish
|
||||
- Update packages
|
||||
- Build wasm & push changes
|
||||
- Squash merge
|
||||
- Update AUR package
|
||||
|
||||
|
||||
## Pre-release
|
||||
- Tuple operations
|
||||
- we don't need vectors as arguments to operators
|
||||
|
@ -18,18 +22,25 @@
|
|||
- Should functions be operators?
|
||||
- Binary, hex, octal numbers
|
||||
|
||||
|
||||
## General
|
||||
- Better tests (assignment, many expressions in one context)
|
||||
- Optional config file
|
||||
- Optional history file
|
||||
- evaluate straight from command line
|
||||
- Package for debian, nix
|
||||
|
||||
|
||||
## Internals
|
||||
- Non-recursive treeify
|
||||
- Faster factorial function. Maybe use gamma instead?
|
||||
- Arbitrary precision floats
|
||||
- Arbitrary precision float (rug doesn't offer arbitrary exponents)
|
||||
|
||||
## Math Features
|
||||
- Mean, Median, Min
|
||||
- Arbitrary base logarithm
|
||||
- Derivatives
|
||||
- CAS features (trig, roots and powers)
|
||||
- Complex numbers
|
||||
- acot/acoth functions
|
||||
- Sums and products with functional arguments
|
||||
|
@ -39,7 +50,8 @@
|
|||
- Fix terminal color detection
|
||||
- Live syntax/output (like firefox js terminal)
|
||||
- Syntax highlighting
|
||||
- Numbered history recall
|
||||
- fish-style tab completion
|
||||
- Numbered expressions, history recall
|
||||
- Enable/disable unit sets (defaults?)
|
||||
- Consistent unit ordering
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ networks:
|
|||
|
||||
services:
|
||||
daisy:
|
||||
build: .
|
||||
build: ./.
|
||||
container_name: daisy
|
||||
restart: unless-stopped
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
/site/node_modules
|
||||
/pkg
|
|
@ -1,17 +0,0 @@
|
|||
{
|
||||
"name": "site",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"dependencies": {
|
||||
"xterm": "^5.3.0"
|
||||
}
|
||||
},
|
||||
"node_modules/xterm": {
|
||||
"version": "5.3.0",
|
||||
"resolved": "https://registry.npmjs.org/xterm/-/xterm-5.3.0.tgz",
|
||||
"integrity": "sha512-8QqjlekLUFTrU6x7xck1MsPzPA571K5zNqWm0M0oroYEWVOptZ0+ubQSkQ3uxIEhcIHRujJy6emDWX4A7qyFzg=="
|
||||
}
|
||||
}
|
||||
}
|
15
shell.nix
|
@ -1,22 +1,11 @@
|
|||
{ nixpkgs ? import <nixpkgs> { }}:
|
||||
let
|
||||
# If you set hash to an empty string, you'll get
|
||||
# an error with the correct hash.
|
||||
pinnedPkgs = nixpkgs.fetchFromGitHub {
|
||||
owner = "NixOS";
|
||||
repo = "nixpkgs";
|
||||
rev = "4ecab3273592f27479a583fb6d975d4aba3486fe";
|
||||
sha256 = "btHN1czJ6rzteeCuE/PNrdssqYD2nIA4w48miQAFloM=";
|
||||
};
|
||||
pkgs = import pinnedPkgs {};
|
||||
|
||||
pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/f155f0cf4ea43c4e3c8918d2d327d44777b6cad4.tar.gz") {};
|
||||
in pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
cargo
|
||||
rustc
|
||||
rustfmt
|
||||
rust-analyzer
|
||||
wasm-pack
|
||||
m4
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
/node_modules
|
||||
/package-lock.json
|
||||
/pkg
|
|
@ -100,11 +100,6 @@
|
|||
<a href="https://aur.archlinux.org/packages/daisy" target="_blank" rel="noopener noreferrer">AUR</a>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
var mobile = (/iphone|ipad|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));
|
||||
if (mobile) { alert("This site may not work on mobile."); }
|
||||
</script>
|
||||
|
||||
<script type="module">
|
||||
// See wasm-pack docs
|
||||
// Build with `wasm-pack build --release --target web --out-dir pkg`
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 92 KiB |
|
@ -19,7 +19,6 @@ pub fn eval_operator(context: &mut Context, g: &Expression) -> Result<Option<Exp
|
|||
|
||||
if args.len() != 1 {panic!()};
|
||||
let a = &args[0];
|
||||
let mut args_ll = op_loc.clone();
|
||||
|
||||
if sh_vars.len() == 1 {
|
||||
if let Expression::Tuple(l, v) = a {
|
||||
|
@ -29,7 +28,6 @@ pub fn eval_operator(context: &mut Context, g: &Expression) -> Result<Option<Exp
|
|||
))
|
||||
};
|
||||
|
||||
args_ll += a.get_linelocation();
|
||||
context.add_shadow(sh_vars[0].clone(), Some(a.clone()));
|
||||
} else {
|
||||
let Expression::Tuple(l, v) = a else {
|
||||
|
@ -48,26 +46,16 @@ pub fn eval_operator(context: &mut Context, g: &Expression) -> Result<Option<Exp
|
|||
|
||||
let mut i = 0;
|
||||
while i < sh_vars.len() {
|
||||
args_ll += v[i].get_linelocation();
|
||||
context.add_shadow(sh_vars[i].clone(), Some(v[i].clone()));
|
||||
i += 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
let r = evaluate(context, &exp);
|
||||
let r = evaluate(context, &exp)?;
|
||||
context.clear_shadow();
|
||||
|
||||
match r {
|
||||
Ok(mut r) => {
|
||||
r.set_linelocation(&args_ll);
|
||||
return Ok(Some(r));
|
||||
},
|
||||
|
||||
Err( (_, err) ) => {
|
||||
return Err((args_ll, err));
|
||||
}
|
||||
}
|
||||
return Ok(Some(r));
|
||||
},
|
||||
|
||||
Operator::Negative => {
|
||||
|
|
28
src/lib.rs
|
@ -68,12 +68,15 @@ cfg_if::cfg_if! {
|
|||
return format!("\r\n{}", daisy_prompt(state));
|
||||
}
|
||||
|
||||
if in_str.trim() == "quit" {
|
||||
return "[quit]".to_string();
|
||||
} else {
|
||||
let r = crate::do_string( unsafe { &mut (*state).context }, &in_str);
|
||||
|
||||
let r = crate::do_string( unsafe { &mut (*state).context }, &in_str);
|
||||
|
||||
match r {
|
||||
Ok(t) | Err(t) => {
|
||||
out += t;
|
||||
match r {
|
||||
Ok(t) | Err(t) => {
|
||||
out += t;
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -88,20 +91,7 @@ cfg_if::cfg_if! {
|
|||
//'\x04' | '\x03'
|
||||
//=> { break 'outer; },
|
||||
|
||||
// Only process sane characters
|
||||
|
||||
_ => {
|
||||
let c = s.chars().next().unwrap();
|
||||
match c {
|
||||
'a'..='z' | 'A'..='Z' | '0'..='9'
|
||||
|'!'|'@'|'#'|'$'|'%'|'^'|'&'|'*'|'('|')'
|
||||
|'?'|'~'|','|'.'|'['|']'|' '
|
||||
|'<'|'>'|'/'|'_'|'-'|':'|'|'|'='|'+'|';'
|
||||
=> { unsafe { (*state).promptbuffer.add_char(c); } },
|
||||
|
||||
_ => {}
|
||||
}
|
||||
},
|
||||
_ => { unsafe { (*state).promptbuffer.add_char(s.chars().next().unwrap()); } },
|
||||
};
|
||||
|
||||
let t = unsafe { (*state).promptbuffer.write_prompt(&mut (*state).context) };
|
||||
|
|
|
@ -120,7 +120,7 @@ pub fn main() -> Result<(), std::io::Error> {
|
|||
// Only process sane characters
|
||||
'a'..='z' | 'A'..='Z' | '0'..='9'
|
||||
|'!'|'@'|'#'|'$'|'%'|'^'|'&'|'*'|'('|')'
|
||||
|'?'|'~'|','|'.'|'['|']'|' '
|
||||
|'?'|'~'|','|'.'|'['|']'
|
||||
|'<'|'>'|'/'|'_'|'-'|':'|'|'|'='|'+'|';'
|
||||
=> { pb.add_char(*q); },
|
||||
|
||||
|
|