mini-cards/app/src/main/java/com/codigoparallevar/minicards/PartCanvasView.java

121 lines
3.4 KiB
Java
Raw Normal View History

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-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 21:25:25 +00:00
import com.codigoparallevar.minicards.parts.Part;
2017-07-03 23:09:37 +00:00
import com.codigoparallevar.minicards.parts.Placeholder;
2017-07-03 21:25:25 +00:00
import com.codigoparallevar.minicards.parts.buttons.RoundButton;
2017-07-03 21:55:32 +00:00
import java.util.ArrayList;
2017-07-03 21:25:25 +00:00
2017-07-03 22:53:12 +00:00
class PartCanvasView extends View {
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
Part selectedPart;
2017-07-03 22:53:12 +00:00
public PartCanvasView(Context context) {
2017-07-03 18:43:22 +00:00
super(context);
2017-07-03 22:21:44 +00:00
this.setBackgroundColor(Color.rgb(4, 69, 99));
2017-07-03 23:09:37 +00:00
parts.add(new Placeholder(50, 50, 750, 500));
2017-07-03 21:25:25 +00:00
parts.add(new RoundButton(500, 1200, 80, 100));
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){
part.draw(canvas);
}
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) {
// 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);
if (selectedPart == null) {
Log.d("Touched part", "not found");
return false;
}
Log.d("Touched part", "Part: " + selectedPart);
}
break;
case MotionEvent.ACTION_UP:
{
selectedPart = null;
}
break;
case MotionEvent.ACTION_MOVE:
{
if (selectedPart != null){
selectedPart.move(x, y);
}
}
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();
return true;
}
2017-07-03 22:53:12 +00:00
@Nullable
2017-07-03 21:55:32 +00:00
private Part getPartOn(int x, int y) {
// Look in the list, in reverse so top-most elements are checked before
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-03 21:55:32 +00:00
if ((x >= part.getLeft()) && (part.getRight() >= x)
&& (y >= part.getTop()) && (part.getBottom() >= y)){
return part;
}
}
return null;
}
2017-07-03 18:43:22 +00:00
}