NekoX/TMessagesProj/src/main/java/org/telegram/ui/Cells/PatternCell.java

296 lines
13 KiB
Java

package org.telegram.ui.Cells;
import android.annotation.SuppressLint;
import android.content.Context;
import android.graphics.BlendMode;
import android.graphics.Canvas;
import android.graphics.LinearGradient;
import android.graphics.Outline;
import android.graphics.Paint;
import android.graphics.PorterDuff;
import android.graphics.PorterDuffColorFilter;
import android.graphics.Rect;
import android.graphics.RectF;
import android.graphics.Shader;
import android.os.Build;
import android.text.TextUtils;
import android.view.View;
import android.view.ViewOutlineProvider;
import org.telegram.messenger.AndroidUtilities;
import org.telegram.messenger.DownloadController;
import org.telegram.messenger.FileLoader;
import org.telegram.messenger.ImageLoader;
import org.telegram.messenger.ImageLocation;
import org.telegram.messenger.MediaController;
import org.telegram.messenger.UserConfig;
import org.telegram.tgnet.TLRPC;
import org.telegram.ui.Components.BackgroundGradientDrawable;
import org.telegram.ui.Components.BackupImageView;
import org.telegram.ui.Components.MediaActionDrawable;
import org.telegram.ui.Components.MotionBackgroundDrawable;
import org.telegram.ui.Components.RadialProgress2;
import java.io.File;
public class PatternCell extends BackupImageView implements DownloadController.FileDownloadProgressListener {
private final int SIZE = 100;
private RectF rect = new RectF();
private RadialProgress2 radialProgress;
private boolean wasSelected;
private TLRPC.TL_wallPaper currentPattern;
private int currentAccount = UserConfig.selectedAccount;
private LinearGradient gradientShader;
private int currentBackgroundColor;
private int currentGradientColor1;
private int currentGradientColor2;
private int currentGradientColor3;
private int currentGradientAngle;
private Paint backgroundPaint;
private MotionBackgroundDrawable backgroundDrawable;
private int TAG;
private PatternCellDelegate delegate;
private int maxWallpaperSize;
public interface PatternCellDelegate {
TLRPC.TL_wallPaper getSelectedPattern();
int getBackgroundGradientColor1();
int getBackgroundGradientColor2();
int getBackgroundGradientColor3();
int getBackgroundGradientAngle();
int getBackgroundColor();
int getPatternColor();
int getCheckColor();
float getIntensity();
}
public PatternCell(Context context, int maxSize, PatternCellDelegate patternCellDelegate) {
super(context);
setRoundRadius(AndroidUtilities.dp(6));
maxWallpaperSize = maxSize;
delegate = patternCellDelegate;
radialProgress = new RadialProgress2(this);
radialProgress.setProgressRect(AndroidUtilities.dp(30), AndroidUtilities.dp(30), AndroidUtilities.dp(70), AndroidUtilities.dp(70));
backgroundPaint = new Paint(Paint.ANTI_ALIAS_FLAG | Paint.FILTER_BITMAP_FLAG);
TAG = DownloadController.getInstance(currentAccount).generateObserverTag();
if (Build.VERSION.SDK_INT >= 21) {
setOutlineProvider(new ViewOutlineProvider() {
@Override
public void getOutline(View view, Outline outline) {
outline.setRoundRect(AndroidUtilities.dp(1), AndroidUtilities.dp(1), view.getMeasuredWidth() - AndroidUtilities.dp(1), view.getMeasuredHeight() - AndroidUtilities.dp(1), AndroidUtilities.dp(6));
}
});
setClipToOutline(true);
}
}
public void setPattern(TLRPC.TL_wallPaper wallPaper) {
currentPattern = wallPaper;
if (wallPaper != null) {
TLRPC.PhotoSize thumb = FileLoader.getClosestPhotoSizeWithSize(wallPaper.document.thumbs, AndroidUtilities.dp(SIZE));
setImage(ImageLocation.getForDocument(thumb, wallPaper.document), SIZE + "_" + SIZE, null, null, "png", 0, 1, wallPaper);
} else {
setImageDrawable(null);
}
updateSelected(false);
}
@Override
protected void onAttachedToWindow() {
super.onAttachedToWindow();
updateSelected(false);
}
public void updateSelected(boolean animated) {
TLRPC.TL_wallPaper selectedPattern = delegate.getSelectedPattern();
boolean isSelected = currentPattern == null && selectedPattern == null || selectedPattern != null && currentPattern != null && currentPattern.id == selectedPattern.id;
if (isSelected) {
updateButtonState(selectedPattern, false, animated);
} else {
radialProgress.setIcon(MediaActionDrawable.ICON_NONE, false, animated);
}
invalidate();
}
@Override
public void invalidate() {
super.invalidate();
}
private void updateButtonState(Object image, boolean ifSame, boolean animated) {
if (image instanceof TLRPC.TL_wallPaper || image instanceof MediaController.SearchImage) {
File path;
int size;
String fileName;
if (image instanceof TLRPC.TL_wallPaper) {
TLRPC.TL_wallPaper wallPaper = (TLRPC.TL_wallPaper) image;
fileName = FileLoader.getAttachFileName(wallPaper.document);
if (TextUtils.isEmpty(fileName)) {
return;
}
path = FileLoader.getInstance(currentAccount).getPathToAttach(wallPaper.document, true);
} else {
MediaController.SearchImage wallPaper = (MediaController.SearchImage) image;
if (wallPaper.photo != null) {
TLRPC.PhotoSize photoSize = FileLoader.getClosestPhotoSizeWithSize(wallPaper.photo.sizes, maxWallpaperSize, true);
path = FileLoader.getInstance(currentAccount).getPathToAttach(photoSize, true);
fileName = FileLoader.getAttachFileName(photoSize);
} else {
path = ImageLoader.getHttpFilePath(wallPaper.imageUrl, "jpg");
fileName = path.getName();
}
if (TextUtils.isEmpty(fileName)) {
return;
}
}
if (path.exists()) {
DownloadController.getInstance(currentAccount).removeLoadingFileObserver(this);
radialProgress.setProgress(1, animated);
radialProgress.setIcon(MediaActionDrawable.ICON_CHECK, ifSame, animated);
} else {
DownloadController.getInstance(currentAccount).addLoadingFileObserver(fileName, null, this);
boolean isLoading = FileLoader.getInstance(currentAccount).isLoadingFile(fileName);
Float progress = ImageLoader.getInstance().getFileProgress(fileName);
if (progress != null) {
radialProgress.setProgress(progress, animated);
} else {
radialProgress.setProgress(0, animated);
}
radialProgress.setIcon(MediaActionDrawable.ICON_EMPTY, ifSame, animated);
}
} else {
radialProgress.setIcon(MediaActionDrawable.ICON_CHECK, ifSame, animated);
}
}
@SuppressLint("DrawAllocation")
@Override
protected void onDraw(Canvas canvas) {
float intensity = delegate.getIntensity();
//imageReceiver.setAlpha(Math.abs(intensity));
imageReceiver.setBlendMode(null);
int backgroundColor = delegate.getBackgroundColor();
int backgroundGradientColor1 = delegate.getBackgroundGradientColor1();
int backgroundGradientColor2 = delegate.getBackgroundGradientColor2();
int backgroundGradientColor3 = delegate.getBackgroundGradientColor3();
int backgroundGradientAngle = delegate.getBackgroundGradientAngle();
int checkColor = delegate.getCheckColor();
if (backgroundGradientColor1 != 0) {
if (gradientShader == null || backgroundColor != currentBackgroundColor || backgroundGradientColor1 != currentGradientColor1 || backgroundGradientColor2 != currentGradientColor2 || backgroundGradientColor3 != currentGradientColor3 || backgroundGradientAngle != currentGradientAngle) {
currentBackgroundColor = backgroundColor;
currentGradientColor1 = backgroundGradientColor1;
currentGradientColor2 = backgroundGradientColor2;
currentGradientColor3 = backgroundGradientColor3;
currentGradientAngle = backgroundGradientAngle;
if (backgroundGradientColor2 != 0) {
gradientShader = null;
if (backgroundDrawable != null) {
backgroundDrawable.setColors(backgroundColor, backgroundGradientColor1, backgroundGradientColor2, backgroundGradientColor3, 0, false);
} else {
backgroundDrawable = new MotionBackgroundDrawable(backgroundColor, backgroundGradientColor1, backgroundGradientColor2, backgroundGradientColor3, true);
backgroundDrawable.setRoundRadius(AndroidUtilities.dp(6));
backgroundDrawable.setParentView(this);
}
if (intensity < 0) {
imageReceiver.setGradientBitmap(backgroundDrawable.getBitmap());
} else {
imageReceiver.setGradientBitmap(null);
if (Build.VERSION.SDK_INT >= 29) {
imageReceiver.setBlendMode(BlendMode.SOFT_LIGHT);
} else {
imageReceiver.setColorFilter(new PorterDuffColorFilter(delegate.getPatternColor(), PorterDuff.Mode.SRC_IN));
}
}
} else {
final Rect r = BackgroundGradientDrawable.getGradientPoints(currentGradientAngle, getMeasuredWidth(), getMeasuredHeight());
gradientShader = new LinearGradient(r.left, r.top, r.right, r.bottom, new int[]{backgroundColor, backgroundGradientColor1}, null, Shader.TileMode.CLAMP);
backgroundDrawable = null;
imageReceiver.setGradientBitmap(null);
}
}
} else {
gradientShader = null;
backgroundDrawable = null;
imageReceiver.setGradientBitmap(null);
}
if (backgroundDrawable != null) {
backgroundDrawable.setBounds(0, 0, getMeasuredWidth(), getMeasuredHeight());
backgroundDrawable.draw(canvas);
} else {
backgroundPaint.setShader(gradientShader);
if (gradientShader == null) {
backgroundPaint.setColor(backgroundColor);
}
rect.set(0, 0, getMeasuredWidth(), getMeasuredHeight());
canvas.drawRoundRect(rect, AndroidUtilities.dp(6), AndroidUtilities.dp(6), backgroundPaint);
}
super.onDraw(canvas);
if (radialProgress.getIcon() != MediaActionDrawable.ICON_NONE) {
radialProgress.setColors(checkColor, checkColor, 0xffffffff, 0xffffffff);
radialProgress.draw(canvas);
}
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
setMeasuredDimension(AndroidUtilities.dp(SIZE), AndroidUtilities.dp(SIZE));
}
@Override
public void onFailedDownload(String fileName, boolean canceled) {
TLRPC.TL_wallPaper selectedPattern = delegate.getSelectedPattern();
boolean isSelected = currentPattern == null && selectedPattern == null || selectedPattern != null && currentPattern != null && currentPattern.id == selectedPattern.id;
if (isSelected) {
if (canceled) {
radialProgress.setIcon(MediaActionDrawable.ICON_NONE, false, true);
} else {
updateButtonState(currentPattern, true, canceled);
}
}
}
@Override
public void onSuccessDownload(String fileName) {
radialProgress.setProgress(1, true);
TLRPC.TL_wallPaper selectedPattern = delegate.getSelectedPattern();
boolean isSelected = currentPattern == null && selectedPattern == null || selectedPattern != null && currentPattern != null && currentPattern.id == selectedPattern.id;
if (isSelected) {
updateButtonState(currentPattern, false, true);
}
}
@Override
public void onProgressDownload(String fileName, long downloadedSize, long totalSize) {
radialProgress.setProgress(Math.min(1f, downloadedSize / (float) totalSize), true);
TLRPC.TL_wallPaper selectedPattern = delegate.getSelectedPattern();
boolean isSelected = currentPattern == null && selectedPattern == null || selectedPattern != null && currentPattern != null && currentPattern.id == selectedPattern.id;
if (isSelected && radialProgress.getIcon() != MediaActionDrawable.ICON_EMPTY) {
updateButtonState(currentPattern, false, true);
}
}
@Override
public void onProgressUpload(String fileName, long uploadedSize, long totalSize, boolean isEncrypted) {
}
@Override
public int getObserverTag() {
return TAG;
}
}