-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dominik Krížo
committed
Aug 12, 2021
1 parent
0e4f324
commit 60fc6b2
Showing
60 changed files
with
2,813 additions
and
0 deletions.
There are no files selected for viewing
133 changes: 133 additions & 0 deletions
133
ExtensibleHashing/src/java/application/business/Property.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
package application.business; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
import lombok.Setter; | ||
import structures.ExtensibleHashing; | ||
|
||
import java.io.*; | ||
import java.util.BitSet; | ||
import java.util.Locale; | ||
|
||
@AllArgsConstructor | ||
@Getter | ||
@Setter | ||
public class Property implements ExtensibleHashing.Hashable<Property> { | ||
public static final int DESC_LENGTH = 20; | ||
public static final Property INSTANCE = new Property(); | ||
|
||
private int id; | ||
private int listingNumber; | ||
private String description; | ||
private double[] gps1; | ||
private double[] gps2; | ||
|
||
public Property(int id) { | ||
this(); | ||
this.id = id; | ||
} | ||
|
||
private Property() { | ||
id = 0; | ||
listingNumber = 0; | ||
description = " ".repeat(DESC_LENGTH); | ||
gps1 = new double[2]; | ||
gps2 = new double[2]; | ||
} | ||
|
||
public boolean equals(Object other) { | ||
if (!other.getClass().equals(this.getClass())) { | ||
return false; | ||
} | ||
Property property = (Property) other; | ||
if (gps1.length != property.gps1.length || gps2.length != property.gps2.length) { | ||
return false; | ||
} | ||
for (int i = 0; i < gps1.length; ++i) { | ||
if (gps1[i] != property.gps1[i]) { | ||
return false; | ||
} | ||
} | ||
for (int i = 0; i < gps2.length; ++i) { | ||
if (gps2[i] != property.gps2[i]) { | ||
return false; | ||
} | ||
} | ||
String thisDesc = description; | ||
String otherDesc = property.description; | ||
if (description.length() < DESC_LENGTH) { | ||
thisDesc = description.concat(" ".repeat(DESC_LENGTH - description.length())); | ||
} | ||
if (property.description.length() < DESC_LENGTH) { | ||
otherDesc = property.description.concat(" ".repeat(DESC_LENGTH - property.description.length())); | ||
} | ||
return id == property.id && listingNumber == property.listingNumber && thisDesc.equals(otherDesc); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return String.format(Locale.US, "Property %d (no. %d), %s", id, listingNumber, description); | ||
} | ||
|
||
@Override | ||
public BitSet getHash() { | ||
return BitSet.valueOf(new long[]{id}); | ||
} | ||
|
||
@Override | ||
public boolean isEqual(Property data) { | ||
return id == data.id; | ||
} | ||
|
||
@Override | ||
public Property getInstance() { | ||
return new Property(); | ||
} | ||
|
||
@Override | ||
public boolean isEmpty() { | ||
return id == 0; | ||
} | ||
|
||
@Override | ||
public byte[] toByteArray() throws IOException { | ||
ByteArrayOutputStream baos = new ByteArrayOutputStream(); | ||
DataOutputStream dos = new DataOutputStream(baos); | ||
dos.writeInt(id); | ||
dos.writeInt(listingNumber); | ||
if (description.length() < DESC_LENGTH) { | ||
description += " ".repeat(DESC_LENGTH - description.length()); | ||
} | ||
dos.writeChars(description); | ||
for (double pos : gps1) { | ||
dos.writeDouble(pos); | ||
} | ||
for (double pos : gps2) { | ||
dos.writeDouble(pos); | ||
} | ||
return baos.toByteArray(); | ||
} | ||
|
||
@Override | ||
public void fromByteArray(byte[] bytes) throws IOException { | ||
DataInputStream dis = new DataInputStream(new ByteArrayInputStream(bytes)); | ||
id = dis.readInt(); | ||
listingNumber = dis.readInt(); | ||
description = ""; | ||
for (int i = 0; i < DESC_LENGTH; ++i) { | ||
description = description.concat(String.valueOf(dis.readChar())); | ||
} | ||
for (int i = 0; i < 2; ++i) { | ||
gps1[i] = dis.readDouble(); | ||
} | ||
for (int i = 0; i < 2; ++i) { | ||
gps2[i] = dis.readDouble(); | ||
} | ||
} | ||
|
||
@Override | ||
public int getSize() { | ||
return 2 * Integer.BYTES + DESC_LENGTH * Character.BYTES + 4 * Double.BYTES; | ||
} | ||
} | ||
|
123 changes: 123 additions & 0 deletions
123
ExtensibleHashing/src/java/application/state/AppState.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
package application.state; | ||
|
||
import application.ui.Renderable; | ||
import application.ui.components.Clickable; | ||
import application.ui.components.Scrollable; | ||
import application.ui.components.TextEdit; | ||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
import java.awt.*; | ||
import java.awt.event.*; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.Optional; | ||
|
||
public abstract class AppState implements Renderable, MouseListener, KeyListener, MouseWheelListener { | ||
|
||
private final List<Clickable> clickables = new ArrayList<>(); | ||
|
||
@Setter | ||
@Getter | ||
private Clickable focused; | ||
|
||
public AppState() { | ||
focused = null; | ||
} | ||
|
||
public void addClickablesAtBeginning(List<Clickable> clickables) { | ||
this.clickables.addAll(0, clickables); | ||
} | ||
|
||
public void removeClickables(List<Clickable> clickables) { | ||
this.clickables.removeAll(clickables); | ||
} | ||
|
||
public void addClickable(Clickable clickable) { | ||
clickables.add(clickable); | ||
} | ||
|
||
|
||
protected void renderClickables(Graphics g) { | ||
for (int i = clickables.size() - 1; i >= 0; --i) { | ||
clickables.get(i).render(g); | ||
} | ||
} | ||
|
||
@Override | ||
public void render(Graphics g) { | ||
renderClickables(g); | ||
} | ||
|
||
@Override | ||
public void mouseClicked(MouseEvent e) { | ||
// TODO | ||
} | ||
|
||
@Override | ||
public void mousePressed(MouseEvent e) { | ||
if (focused != null && !focused.intersects(e.getX(), e.getY())) { | ||
focused = null; | ||
} | ||
clickables.stream() | ||
.filter(clickable -> clickable.intersects(e.getX(), e.getY())) | ||
.findFirst() | ||
.ifPresent(Clickable::doAction); | ||
} | ||
|
||
@Override | ||
public void mouseReleased(MouseEvent e) { | ||
// TODO | ||
} | ||
|
||
@Override | ||
public void mouseEntered(MouseEvent e) { | ||
// TODO | ||
} | ||
|
||
@Override | ||
public void mouseExited(MouseEvent e) { | ||
// TODO | ||
} | ||
|
||
@Override | ||
public void keyTyped(KeyEvent e) { | ||
Optional.ofNullable(focused) | ||
.filter(TextEdit.class::isInstance) | ||
.map(TextEdit.class::cast) | ||
.ifPresent(textEdit -> { | ||
if (e.getKeyChar() == KeyEvent.VK_BACK_SPACE) { | ||
textEdit.backSpace(); | ||
} else { | ||
textEdit.write(e.getKeyChar()); | ||
} | ||
}); | ||
} | ||
|
||
@Override | ||
public void keyPressed(KeyEvent e) { | ||
// TODO | ||
} | ||
|
||
@Override | ||
public void keyReleased(KeyEvent e) { | ||
// TODO | ||
} | ||
|
||
@Override | ||
public void mouseWheelMoved(MouseWheelEvent e) { | ||
clickables.stream() | ||
.filter(Scrollable.class::isInstance) | ||
.filter(clickable -> clickable.intersects(e.getX(), e.getY())) | ||
.map(Scrollable.class::cast) | ||
.findFirst() | ||
.ifPresent(scrollable -> { | ||
if (e.getWheelRotation() <= -1) { | ||
scrollable.moveDown(); | ||
} else if (e.getWheelRotation() >= 1) { | ||
scrollable.moveUp(); | ||
} | ||
}); | ||
} | ||
|
||
} |
Oops, something went wrong.