Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev ##2 #99

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="bin"/>
</classpath>
8 changes: 0 additions & 8 deletions .gitignore

This file was deleted.

28 changes: 28 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>SimpleJavaCalculator</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
<filteredResources>
<filter>
<id>1692244280313</id>
<name></name>
<type>30</type>
<matcher>
<id>org.eclipse.core.resources.regexFilterMatcher</id>
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
</matcher>
</filter>
</filteredResources>
</projectDescription>
2 changes: 2 additions & 0 deletions .settings/org.eclipse.core.resources.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
eclipse.preferences.version=1
encoding/<project>=UTF-8
14 changes: 14 additions & 0 deletions .settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=17
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=17
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
org.eclipse.jdt.core.compiler.release=enabled
org.eclipse.jdt.core.compiler.source=17
Binary file added bin/module-info.class
Binary file not shown.
1 change: 1 addition & 0 deletions bin/resources/icon/icon-notice.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
`icon.png`, all rights reserved by xdvrx1
Binary file added bin/resources/icon/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bin/simplejavacalculator/BufferedImageCustom.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added bin/simplejavacalculator/Calculator.class
Binary file not shown.
Binary file added bin/simplejavacalculator/SimpleJavaCalculator.class
Binary file not shown.
Binary file added bin/simplejavacalculator/UI.class
Binary file not shown.
Binary file added bin/simplejavacalculatorTest/CalculatorTest.class
Binary file not shown.
4 changes: 4 additions & 0 deletions build/built-jar.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#Fri, 11 Aug 2023 22:35:15 +0800


C\:\\Users\\Clarr\\OneDrive\\Documents\\1.\ Software\ Engineering\ 2020-2022\\A)\ SE\ Studies\\Y3\\S3\\SCC\\Assign\\Assign_2\\SimpleJavaCalculator=
11 changes: 11 additions & 0 deletions src/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/**
*
*/
/**
*
*/
module SimpleJavaCalculator {
requires java.desktop;
requires junit;
requires org.junit.jupiter.api;
}
15 changes: 12 additions & 3 deletions src/simplejavacalculator/Calculator.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
public class Calculator {

public enum BiOperatorModes {
normal, add, minus, multiply, divide , xpowerofy
normal, add, minus, multiply, divide , xpowerofy, mod
}

public enum MonoOperatorModes {
square, squareRoot, oneDividedBy, cos, sin, tan, log, rate, abs, ln,
square,factorial, squareRoot, oneDividedBy, cos, sin, tan, log, rate, abs, ln,
}

private Double num1, num2;
Expand Down Expand Up @@ -52,7 +52,9 @@ private Double calculateBiImpl() {
if (mode == BiOperatorModes.xpowerofy) {
return pow(num1,num2);
}

if (mode == BiOperatorModes.mod) {
return num1 % num2;
}
// never reach
throw new Error();
}
Expand Down Expand Up @@ -85,6 +87,13 @@ public Double reset() {


public Double calculateMono(MonoOperatorModes newMode, Double num) {
if (newMode == MonoOperatorModes.factorial) {
double facResult = 1;
for(int i=1;i<=num;i++){
facResult=facResult*i;
}
return facResult;
}
if (newMode == MonoOperatorModes.square) {
return num * num;
}
Expand Down
31 changes: 25 additions & 6 deletions src/simplejavacalculator/UI.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ public class UI implements ActionListener {
private final JTextArea text;

private final JButton but[], butAdd, butMinus, butMultiply, butDivide,
butEqual, butCancel, butSquareRoot, butSquare, butOneDividedBy,
butCos, butSin, butTan, butxpowerofy, butlog, butrate, butabs, butBinary, butln;
butEqual, butCancel, butSquareRoot, butSquare, butOneDividedBy,butFactorial,
butCos, butSin, butTan, butxpowerofy, butlog, butrate, butabs, butBinary, butln, butMod;
private final Calculator calc;

private final String[] buttonValue = {"0", "1", "2", "3", "4", "5", "6",
Expand Down Expand Up @@ -96,7 +96,8 @@ public UI() throws IOException {
butMultiply = new JButton("*");
butDivide = new JButton("/");
butEqual = new JButton("=");
butSquareRoot = new JButton("sqrt");
butSquareRoot = new JButton("sqrt");
butFactorial = new JButton("!");
butSquare = new JButton("x*x");
butOneDividedBy = new JButton("1/x");
butCos = new JButton("Cos");
Expand All @@ -109,7 +110,8 @@ public UI() throws IOException {
butabs = new JButton("abs(x)");
butCancel = new JButton("C");
butBinary = new JButton("Bin");

butMod = new JButton("%"); // Add the mod button

calc = new Calculator();

}
Expand All @@ -134,6 +136,7 @@ public void init() {
butEqual.setFont(font);
butSquareRoot.setFont(font);
butSquare.setFont(font);
butFactorial.setFont(font);
butOneDividedBy.setFont(font);
butCos.setFont(font);
butSin.setFont(font);
Expand All @@ -145,7 +148,8 @@ public void init() {
butabs.setFont(font);
butCancel.setFont(font);
butBinary.setFont(font);

butMod.setFont(font); // Set font for the mod button

panel.add(Box.createHorizontalStrut(100));
panelSub1.add(text);
panel.add(panelSub1);
Expand All @@ -163,7 +167,9 @@ public void init() {
panelSub3.add(but[6]);
panelSub3.add(Box.createHorizontalStrut(15));
panelSub3.add(butMultiply);
panelSub3.add(butDivide);
panelSub3.add(butDivide);
panelSub3.add(butMod); // Add the mod button here

panel.add(panelSub3);

panelSub4.add(but[7]);
Expand All @@ -181,6 +187,7 @@ public void init() {
panel.add(panelSub5);

panelSub6.add(butSquare);
panelSub6.add(butFactorial);
panelSub6.add(butSquareRoot);
panelSub6.add(butOneDividedBy);
panelSub6.add(butxpowerofy);
Expand All @@ -204,6 +211,7 @@ public void init() {
butMinus.addActionListener(this);
butMultiply.addActionListener(this);
butDivide.addActionListener(this);
butFactorial.addActionListener(this);
butSquare.addActionListener(this);
butSquareRoot.addActionListener(this);
butOneDividedBy.addActionListener(this);
Expand All @@ -215,6 +223,8 @@ public void init() {
butlog.addActionListener(this);
butrate.addActionListener(this);
butabs.addActionListener(this);
butMod.addActionListener(this); // Add action listener for the mod button

butBinary.addActionListener(this);

butEqual.addActionListener(this);
Expand Down Expand Up @@ -268,6 +278,10 @@ public void actionPerformed(ActionEvent e) {
writer(calc.calculateBi(Calculator.BiOperatorModes.xpowerofy, reader()));
}

if (source == butFactorial) {
writer(calc.calculateMono(Calculator.MonoOperatorModes.factorial, reader()));
}

if (source == butSquare) {
writer(calc.calculateMono(Calculator.MonoOperatorModes.square, reader()));
}
Expand Down Expand Up @@ -299,6 +313,11 @@ public void actionPerformed(ActionEvent e) {
if (source == butabs)
writer(calc.calculateMono(Calculator.MonoOperatorModes.abs, reader()));

if (source == butMod) { // Handle the mod button function
writer(calc.calculateBi(Calculator.BiOperatorModes.mod, reader()));
text.replaceSelection(butMod.getText());
}

if (source == butEqual)
writer(calc.calculateEqual(reader()));

Expand Down
74 changes: 55 additions & 19 deletions src/simplejavacalculatorTest/CalculatorTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,15 @@

import simplejavacalculator.Calculator;

class CalculatorTest {
class CalculatorTest{


@Test
void calculateBiModTest() {
Calculator calculator = new Calculator();
calculator.calculateBi(Calculator.BiOperatorModes.mod, 7.0);
Assertions.assertEquals(3.0, calculator.calculateBi(Calculator.BiOperatorModes.mod, 4.0));
}

@Test
void calculateBiNormalTest() {
Expand Down Expand Up @@ -79,24 +87,46 @@ void CalculateMonoOneDividedByTest() {
Assertions.assertEquals(0.10, calculator.calculateMono(Calculator.MonoOperatorModes.oneDividedBy, 10.0));
}

//Math.cos(π/3)≈ 0.5
@Test
void CalculateMonoSinTest() {
Calculator calculator = new Calculator();
Assertions.assertEquals(0.5, calculator.calculateMono(Calculator.MonoOperatorModes.sin, java.lang.Math.PI / 6), 0.0000000001);
}

@Test
void CalculateMonoCosTest() {
Calculator calculator = new Calculator();
Assertions.assertEquals(0.5, calculator.calculateMono(Calculator.MonoOperatorModes.cos, java.lang.Math.PI / 3), 0.0000000001);
}

@Test
void CalculateMonoTanTest() {
Calculator calculator = new Calculator();
Assertions.assertEquals(1.0, calculator.calculateMono(Calculator.MonoOperatorModes.tan, java.lang.Math.PI / 4), 0.0000000001);
}

void calculateMonoCosTest() {
Calculator calculator = new Calculator();
double result = calculator.calculateMono(Calculator.MonoOperatorModes.cos, 60.0);
Assertions.assertEquals(Math.cos(Math.toRadians(60.0)), result);
}

//Math.sin(π/6) ≈ 0.5
@Test
void calculateMonoSinTest() {
Calculator calculator = new Calculator();
double result = calculator.calculateMono(Calculator.MonoOperatorModes.sin, 30.0);
Assertions.assertEquals(Math.sin(Math.toRadians(30.0)), result);
}

//Math.tan(π/4) = 1.0
@Test
void calculateMonoTanTest() {
Calculator calculator = new Calculator();
double result = calculator.calculateMono(Calculator.MonoOperatorModes.tan, 45.0);
Assertions.assertEquals(Math.tan(Math.toRadians(45.0)), result);
}

//0.0
@Test
void calculateMonoTanZeroTest() {
Calculator calculator = new Calculator();
double result = calculator.calculateMono(Calculator.MonoOperatorModes.tan, 0.0);
Assertions.assertEquals(0.0, result);
}

//undefined
@Test
void calculateMonoTanNaNTest() {
Calculator calculator = new Calculator();
double result = calculator.calculateMono(Calculator.MonoOperatorModes.tan, 90.0);
Assertions.assertTrue(Double.isNaN(result));
}

@Test
void CalculateMonoLogTest() {
Calculator calculator = new Calculator();
Expand All @@ -115,5 +145,11 @@ void CalculateMonoAbsTest() {
Assertions.assertEquals(3.0, calculator.calculateMono(Calculator.MonoOperatorModes.abs, -3.0));
Assertions.assertEquals(3.0, calculator.calculateMono(Calculator.MonoOperatorModes.abs, 3.0));
}
@Test
void calculateMonoFactorialTest() {
Calculator calculator = new Calculator();
double result = calculator.calculateMono(Calculator.MonoOperatorModes.factorial, 5.0);
Assertions.assertEquals(120.0, result);
}

}
}