2017-07-03 18:43:22 +00:00
|
|
|
package com.codigoparallevar.minicards;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.graphics.Canvas;
|
|
|
|
import android.graphics.Color;
|
|
|
|
import android.graphics.Paint;
|
2017-07-03 23:09:37 +00:00
|
|
|
import android.support.annotation.NonNull;
|
2017-07-03 22:53:12 +00:00
|
|
|
import android.support.annotation.Nullable;
|
2017-07-09 14:46:47 +00:00
|
|
|
import android.util.AttributeSet;
|
2017-07-03 21:25:25 +00:00
|
|
|
import android.util.Log;
|
2017-07-03 21:55:32 +00:00
|
|
|
import android.view.MotionEvent;
|
2017-07-03 18:43:22 +00:00
|
|
|
import android.view.View;
|
|
|
|
|
2017-07-03 23:26:40 +00:00
|
|
|
import com.codigoparallevar.minicards.motion.MotionMode;
|
2017-07-03 21:25:25 +00:00
|
|
|
import com.codigoparallevar.minicards.parts.buttons.RoundButton;
|
2017-07-22 20:31:21 +00:00
|
|
|
import com.codigoparallevar.minicards.parts.samples.ColorBox;
|
2017-07-14 03:33:19 +00:00
|
|
|
import com.codigoparallevar.minicards.parts.samples.Placeholder;
|
|
|
|
import com.codigoparallevar.minicards.types.InputConnector;
|
|
|
|
import com.codigoparallevar.minicards.types.OutputConnector;
|
|
|
|
import com.codigoparallevar.minicards.types.Part;
|
2017-07-22 20:31:21 +00:00
|
|
|
import com.codigoparallevar.minicards.types.PartGrid;
|
2017-07-14 03:33:19 +00:00
|
|
|
import com.codigoparallevar.minicards.types.Position;
|
|
|
|
import com.codigoparallevar.minicards.types.Selectable;
|
2017-07-03 21:25:25 +00:00
|
|
|
|
2017-07-04 00:26:35 +00:00
|
|
|
import org.json.JSONArray;
|
|
|
|
import org.json.JSONException;
|
|
|
|
import org.json.JSONObject;
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
import java.io.FileOutputStream;
|
|
|
|
import java.io.FileReader;
|
|
|
|
import java.io.IOException;
|
2017-07-03 21:55:32 +00:00
|
|
|
import java.util.ArrayList;
|
2017-07-03 21:25:25 +00:00
|
|
|
|
2017-07-22 20:31:21 +00:00
|
|
|
class CanvasView extends View implements PartGrid {
|
2017-07-03 18:43:22 +00:00
|
|
|
|
2017-07-03 23:09:37 +00:00
|
|
|
@NonNull
|
2017-07-03 21:55:32 +00:00
|
|
|
ArrayList<Part> parts = new ArrayList<>();
|
2017-07-03 18:43:22 +00:00
|
|
|
|
2017-07-03 23:09:37 +00:00
|
|
|
@Nullable
|
2017-07-14 03:33:19 +00:00
|
|
|
Selectable selectedPart;
|
2017-07-03 23:09:37 +00:00
|
|
|
|
2017-07-03 23:26:40 +00:00
|
|
|
@Nullable
|
|
|
|
final Position lastTouchedPosition = new Position();
|
|
|
|
|
|
|
|
@Nullable
|
|
|
|
long lastTouchedTime;
|
|
|
|
|
|
|
|
@Nullable
|
|
|
|
private MotionMode.Type motionMode;
|
|
|
|
|
2017-07-04 00:26:35 +00:00
|
|
|
@NonNull
|
|
|
|
private String name = "default";
|
2017-07-03 23:26:40 +00:00
|
|
|
private final static float touchTimeForLongTouchInMillis = 500;
|
2017-07-10 01:32:05 +00:00
|
|
|
private boolean _isDragging = false;
|
|
|
|
private MainActivity parentActivity = null;
|
2017-07-22 20:31:21 +00:00
|
|
|
private Tuple<Integer, Integer, Integer, Integer> _dropToRemoveZone = new Tuple<>(0, 0, 0, 0);
|
2017-07-10 02:29:15 +00:00
|
|
|
private boolean _devMode = false;
|
2017-07-03 23:26:40 +00:00
|
|
|
|
2017-07-09 15:00:08 +00:00
|
|
|
public CanvasView(Context context) {
|
2017-07-03 18:43:22 +00:00
|
|
|
super(context);
|
2017-07-09 14:46:47 +00:00
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
2017-07-09 15:00:08 +00:00
|
|
|
public CanvasView(Context context, AttributeSet attr){
|
2017-07-09 14:46:47 +00:00
|
|
|
super(context, attr);
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void init() {
|
2017-07-03 22:21:44 +00:00
|
|
|
this.setBackgroundColor(Color.rgb(4, 69, 99));
|
2017-07-04 00:26:35 +00:00
|
|
|
|
|
|
|
if (!loadState()){
|
2017-07-22 20:31:21 +00:00
|
|
|
parts.add(new Placeholder(this, 50, 50, 750, 500));
|
|
|
|
parts.add(new ColorBox(this, 250, 250, 100, 100));
|
|
|
|
parts.add(new RoundButton(this, 500, 1200, 80, 100));
|
2017-07-04 00:26:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean loadState(){
|
|
|
|
File filesDir = getContext().getFilesDir();
|
|
|
|
File file = new File(filesDir + "/" + name);
|
|
|
|
FileReader fileIn = null;
|
|
|
|
try {
|
|
|
|
fileIn = new FileReader(file);
|
|
|
|
char[] data = new char[(int) file.length()];
|
|
|
|
fileIn.read(data);
|
|
|
|
JSONArray jsonParts = new JSONArray(new String(data ));
|
|
|
|
for (int i = 0; i < jsonParts.length(); i++){
|
|
|
|
deserializeObject(jsonParts.getJSONObject(i));
|
|
|
|
}
|
|
|
|
} catch (IOException e) {
|
|
|
|
parts.clear();
|
|
|
|
Log.w("PartCanvasView", e.getMessage());
|
|
|
|
return false;
|
|
|
|
} catch (JSONException e) {
|
|
|
|
parts.clear();
|
|
|
|
Log.w("PartCanvasView", e.getMessage());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
fileIn.close();
|
|
|
|
} catch (IOException e) {
|
|
|
|
Log.w("PartCanvasView", e.getMessage());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void deserializeObject(JSONObject jsonObject) throws JSONException {
|
|
|
|
String type = jsonObject.getString("_type");
|
|
|
|
if(type.equals(RoundButton.class.getName())) {
|
2017-07-22 20:31:21 +00:00
|
|
|
parts.add(RoundButton.deserialize(this, jsonObject.getJSONObject("_data")));
|
2017-07-04 00:26:35 +00:00
|
|
|
}
|
|
|
|
else if (type.equals(Placeholder.class.getName())) {
|
2017-07-22 20:31:21 +00:00
|
|
|
parts.add(Placeholder.deserialize(this, jsonObject.getJSONObject("_data")));
|
|
|
|
}
|
|
|
|
else if (type.equals(ColorBox.class.getName())){
|
|
|
|
parts.add(ColorBox.deserialize(this, jsonObject.getJSONObject("_data")));
|
2017-07-04 00:26:35 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
throw new JSONException("Expected known class, found " + type);
|
|
|
|
}
|
2017-07-03 18:43:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onDraw(Canvas canvas){
|
2017-07-03 23:09:37 +00:00
|
|
|
final long renderStartTime = System.currentTimeMillis();
|
2017-07-03 22:21:44 +00:00
|
|
|
drawBackground(canvas);
|
|
|
|
|
2017-07-03 21:25:25 +00:00
|
|
|
for (Part part : parts){
|
2017-07-10 02:29:15 +00:00
|
|
|
part.draw(canvas, _devMode);
|
2017-07-03 21:25:25 +00:00
|
|
|
}
|
|
|
|
|
2017-07-03 23:09:37 +00:00
|
|
|
Log.d("Render time", System.currentTimeMillis() - renderStartTime + "ms");
|
2017-07-03 18:43:22 +00:00
|
|
|
}
|
2017-07-03 21:55:32 +00:00
|
|
|
|
2017-07-03 22:21:44 +00:00
|
|
|
private void drawBackground(Canvas canvas) {
|
2017-07-10 02:29:15 +00:00
|
|
|
if (!_devMode){
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-03 22:21:44 +00:00
|
|
|
// Blueprint background
|
|
|
|
final int width = getWidth() + getLeft();
|
|
|
|
final int height = getHeight() + getTop();
|
|
|
|
final int cellSize = 50;
|
|
|
|
|
|
|
|
Paint blueprintLines = new Paint(Paint.ANTI_ALIAS_FLAG);
|
|
|
|
blueprintLines.setColor(Color.argb(100, 255, 255, 255));
|
|
|
|
|
|
|
|
// Vertical lines
|
|
|
|
for (int x = cellSize; x < width; x += cellSize){
|
|
|
|
canvas.drawLine(x, 0, x, height, blueprintLines);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Horizontal lines
|
|
|
|
for (int y = cellSize; y < height; y += cellSize){
|
|
|
|
canvas.drawLine(0, y, width, y, blueprintLines);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-03 21:55:32 +00:00
|
|
|
@Override
|
|
|
|
public boolean onTouchEvent(MotionEvent event){
|
2017-07-03 23:09:37 +00:00
|
|
|
final int x = (int) event.getX() - this.getLeft();
|
|
|
|
final int y = (int) event.getY() - this.getTop();
|
|
|
|
|
|
|
|
switch (event.getAction()){
|
|
|
|
case MotionEvent.ACTION_DOWN:
|
|
|
|
{
|
|
|
|
selectedPart = getPartOn(x, y);
|
2017-07-03 23:26:40 +00:00
|
|
|
lastTouchedPosition.to(x, y);
|
|
|
|
lastTouchedTime = System.currentTimeMillis();
|
2017-07-03 23:09:37 +00:00
|
|
|
if (selectedPart == null) {
|
|
|
|
Log.d("Touched part", "not found");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Log.d("Touched part", "Part: " + selectedPart);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MotionEvent.ACTION_UP:
|
|
|
|
{
|
2017-07-03 23:26:40 +00:00
|
|
|
if (motionMode == null){
|
|
|
|
motionMode = getMotionMode(false);
|
|
|
|
}
|
|
|
|
if (motionMode != MotionMode.Type.LongTouch) {
|
|
|
|
if (selectedPart != null){
|
2017-07-14 03:33:19 +00:00
|
|
|
if (selectedPart instanceof Part){
|
|
|
|
((Part) selectedPart).touched();
|
|
|
|
}
|
2017-07-03 23:26:40 +00:00
|
|
|
}
|
|
|
|
}
|
2017-07-10 01:32:05 +00:00
|
|
|
else if (motionMode == MotionMode.Type.LongTouch) {
|
|
|
|
if (selectedPart != null) {
|
|
|
|
if (inDropZone(x, y)) {
|
|
|
|
Log.d("Canvas", "Deleting element" + selectedPart);
|
|
|
|
parts.remove(selectedPart);
|
|
|
|
}
|
2017-07-14 03:33:19 +00:00
|
|
|
else {
|
|
|
|
selectedPart.getMoveable().drop(x, y);
|
|
|
|
}
|
2017-07-10 01:32:05 +00:00
|
|
|
}
|
|
|
|
}
|
2017-07-03 23:26:40 +00:00
|
|
|
|
2017-07-10 01:32:05 +00:00
|
|
|
_isDragging = false;
|
2017-07-03 23:26:40 +00:00
|
|
|
motionMode = null;
|
2017-07-03 23:09:37 +00:00
|
|
|
selectedPart = null;
|
|
|
|
}
|
2017-07-04 00:26:35 +00:00
|
|
|
try {
|
|
|
|
saveState();
|
|
|
|
} catch (IOException e) {
|
|
|
|
Log.w("PartCanvasView", e.getMessage());
|
|
|
|
}
|
2017-07-03 23:09:37 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MotionEvent.ACTION_MOVE:
|
|
|
|
{
|
2017-07-10 02:29:15 +00:00
|
|
|
if (!_devMode) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-07-10 01:32:05 +00:00
|
|
|
Log.i("Canvas", "X: " + x + " Y: " + y
|
2017-07-22 20:31:21 +00:00
|
|
|
+ " in drop zone " + _dropToRemoveZone + " : " + inDropZone(x, y));
|
2017-07-03 23:26:40 +00:00
|
|
|
if (motionMode == null){
|
2017-07-14 03:33:19 +00:00
|
|
|
final Selectable nowSelectedPart = getPartOn(x, y);
|
2017-07-03 23:26:40 +00:00
|
|
|
final boolean canWait = selectedPart == nowSelectedPart;
|
|
|
|
motionMode = getMotionMode(canWait);
|
|
|
|
}
|
|
|
|
if (motionMode == MotionMode.Type.LongTouch){
|
|
|
|
if (selectedPart != null){
|
2017-07-10 01:32:05 +00:00
|
|
|
_isDragging = true;
|
2017-07-22 20:31:21 +00:00
|
|
|
selectedPart.getMoveable().moveEnd(x, y);
|
2017-07-14 03:33:19 +00:00
|
|
|
invalidate();
|
2017-07-03 23:26:40 +00:00
|
|
|
}
|
2017-07-03 23:09:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2017-07-03 21:55:32 +00:00
|
|
|
|
2017-07-03 23:09:37 +00:00
|
|
|
default:
|
|
|
|
{
|
|
|
|
Log.d("PartCanvasView", "Unhandled action: " + event.getAction());
|
|
|
|
}
|
2017-07-03 21:55:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
invalidate();
|
2017-07-10 01:32:05 +00:00
|
|
|
if (parentActivity != null) {
|
|
|
|
parentActivity.invalidate();
|
|
|
|
}
|
2017-07-03 21:55:32 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-07-10 01:32:05 +00:00
|
|
|
private boolean inDropZone(int x, int y) {
|
2017-07-22 20:31:21 +00:00
|
|
|
return (x >= _dropToRemoveZone._x1) && (x <= _dropToRemoveZone._x2)
|
|
|
|
&& (y >= _dropToRemoveZone._y1) && (y <= _dropToRemoveZone._y2);
|
2017-07-10 01:32:05 +00:00
|
|
|
}
|
|
|
|
|
2017-07-04 00:26:35 +00:00
|
|
|
private void saveState() throws IOException {
|
|
|
|
File filesDir = getContext().getFilesDir();
|
|
|
|
FileOutputStream fileOut = new FileOutputStream(filesDir + "/" + name);
|
|
|
|
|
|
|
|
byte[] serialized = serializeState();
|
|
|
|
fileOut.write(serialized);
|
|
|
|
|
|
|
|
fileOut.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
private byte[] serializeState() throws IOException {
|
|
|
|
JSONArray partArray = new JSONArray();
|
|
|
|
for (Part part : parts) {
|
|
|
|
JSONObject serializedPart = new JSONObject();
|
|
|
|
try {
|
|
|
|
serializedPart.put("_type", part.getClass().getName());
|
|
|
|
serializedPart.put("_data", part.serialize());
|
|
|
|
} catch (JSONException e) {
|
|
|
|
throw new IOException(e.getMessage(), e.getCause());
|
|
|
|
}
|
|
|
|
|
|
|
|
partArray.put(serializedPart);
|
|
|
|
}
|
|
|
|
|
|
|
|
return partArray.toString().getBytes("UTF-8");
|
|
|
|
}
|
|
|
|
|
2017-07-03 23:26:40 +00:00
|
|
|
@Nullable
|
|
|
|
private MotionMode.Type getMotionMode(boolean canWait) {
|
|
|
|
if (selectedPart == null){
|
|
|
|
return MotionMode.Type.Displacement;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((System.currentTimeMillis() - lastTouchedTime) >= touchTimeForLongTouchInMillis){
|
|
|
|
return MotionMode.Type.LongTouch;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (canWait) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return MotionMode.Type.ShortTouch;
|
|
|
|
}
|
|
|
|
|
2017-07-03 22:53:12 +00:00
|
|
|
@Nullable
|
2017-07-22 20:31:21 +00:00
|
|
|
public Selectable getPartOn(int x, int y) {
|
2017-07-14 03:33:19 +00:00
|
|
|
// Look in the list of parts, in reverse so top-most elements are checked before
|
2017-07-03 21:55:32 +00:00
|
|
|
for (int i = parts.size() - 1; i >= 0; i--){
|
2017-07-03 23:09:37 +00:00
|
|
|
final Part part = parts.get(i);
|
2017-07-14 03:33:19 +00:00
|
|
|
if (part.containsPoint(x, y)){
|
2017-07-03 21:55:32 +00:00
|
|
|
return part;
|
|
|
|
}
|
|
|
|
}
|
2017-07-14 03:33:19 +00:00
|
|
|
|
|
|
|
// If no part was found, do the same for connectors
|
|
|
|
for (int i = parts.size() - 1; i >= 0; i--){
|
|
|
|
final Part part = parts.get(i);
|
|
|
|
// First try with output connectors
|
|
|
|
for (OutputConnector outputConnector : part.getOutputConnectors()){
|
|
|
|
if (outputConnector.containsPoint(x, y)){
|
|
|
|
return outputConnector;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Then with input ones
|
|
|
|
for (InputConnector inputConnector : part.getInputConnectors()){
|
|
|
|
if (inputConnector.containsPoint(x, y)){
|
|
|
|
return inputConnector;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-03 21:55:32 +00:00
|
|
|
return null;
|
|
|
|
}
|
2017-07-09 19:49:52 +00:00
|
|
|
|
2017-07-22 20:31:21 +00:00
|
|
|
@Override
|
|
|
|
@Nullable
|
|
|
|
public InputConnector getInputConnectorOn(int x, int y) {
|
|
|
|
// If no part was found, do the same for connectors
|
|
|
|
for (int i = parts.size() - 1; i >= 0; i--){
|
|
|
|
final Part part = parts.get(i);
|
|
|
|
|
|
|
|
// Then with input ones
|
|
|
|
for (InputConnector inputConnector : part.getInputConnectors()){
|
|
|
|
if (inputConnector.containsPoint(x, y)){
|
|
|
|
return inputConnector;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2017-07-09 19:49:52 +00:00
|
|
|
public void addPart(Part part) {
|
|
|
|
parts.add(part);
|
|
|
|
invalidate();
|
|
|
|
}
|
2017-07-10 01:32:05 +00:00
|
|
|
|
|
|
|
public boolean isDragging() {
|
|
|
|
return _isDragging;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setParentActivity(MainActivity parentActivity) {
|
|
|
|
this.parentActivity = parentActivity;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDropZone(float x1, float x2, float y1, float y2) {
|
2017-07-22 20:31:21 +00:00
|
|
|
_dropToRemoveZone = new Tuple<>((int) x1, (int) x2, (int) y1, (int) y2);
|
2017-07-10 01:32:05 +00:00
|
|
|
}
|
|
|
|
|
2017-07-10 02:29:15 +00:00
|
|
|
public void setDevMode(boolean devMode) {
|
|
|
|
_devMode = devMode;
|
|
|
|
this.invalidate();
|
|
|
|
}
|
|
|
|
|
2017-07-10 01:32:05 +00:00
|
|
|
private class Tuple<T, T1, T2, T3> {
|
|
|
|
|
|
|
|
final T _x1;
|
|
|
|
final T1 _x2;
|
|
|
|
final T2 _y1;
|
|
|
|
final T3 _y2;
|
|
|
|
|
|
|
|
public Tuple(T x1, T1 x2, T2 y1, T3 y2) {
|
|
|
|
_x1 = x1;
|
|
|
|
_x2 = x2;
|
|
|
|
_y1 = y1;
|
|
|
|
_y2 = y2;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String toString(){
|
|
|
|
return "(" + _x1 + " - " + _x2 + ", " + _y1 + " - " + _y2 + ")";
|
|
|
|
}
|
|
|
|
}
|
2017-07-03 18:43:22 +00:00
|
|
|
}
|