8000 feat(performance): Caching images by rewhile · Pull Request #19 · bqcuong/bomberman-starter · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

feat(performance): Caching images #19

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

Open
wants to merge 1 commit into
base: starter-2
Choose a base branch
from
Open
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
4 changes: 3 additions & 1 deletion src/uet/oop/bomberman/graphics/Sprite.java
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,9 @@ public int getPixel(int i) {
return _pixels[i];
}

Image cached;
public Image getFxImage() {
if (cached != null) return cached;
WritableImage wr = new WritableImage(SIZE, SIZE);
PixelWriter pw = wr.getPixelWriter();
for (int x = 0; x < SIZE; x++) {
Expand All @@ -258,7 +260,7 @@ public Image getFxImage() {
}
}
Image input = new ImageView(wr).getImage();
return resample(input, SCALED_SIZE / DEFAULT_SIZE);
return cached = resample(input, SCALED_SIZE / DEFAULT_SIZE);
}

private Image resample(Image input, int scaleFactor) {
Expand Down
0