- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在创建一个纸牌游戏,但无法显示纸牌 gif。从 52 张卡片组数组列表中抽取一张卡片,然后我需要将该抽取的卡片与卡片 gif 数组列表中名称类似的 gif 进行匹配,以在卡片 GUI 上显示该 gif。我将我的游戏、卡片、牌组和图形类放在下面,让您了解我的程序是如何工作的:
卡片-
package uk.ac.aber.dcs.cs12320.cards;
public class Card {
public String number;
public String suit;
public Card(String n, String s) {
number = n;
suit = s;
}
@Override
public String toString() {
return number + suit;
}
}
游戏-
import java.io.IOException;
import java.util.ArrayList;
import java.util.Scanner;
import uk.ac.aber.dcs.cs12320.cards.Card;
import uk.ac.aber.dcs.cs12320.cards.gui.TheFrame;
public class Game {
private Scanner scan;
private Deck deck;
private TheFrame frame;
private ArrayList<Card> onTable = new ArrayList<Card>();
public Game() {
frame = new TheFrame();
deck = new Deck();
try {
deck.buildDeck();
} catch (IOException e) {
System.err.println("Error reading in deck...");
System.exit(-1);
}
}
private void runMenu() throws IOException {
String response;
do {
printMenu();
System.out.println("What would you like to do:");
scan = new Scanner(System.in);
response = scan.nextLine().toUpperCase();
switch (response) {
case "1":
PrintDeck();
break;
case "2":
ShuffleCards();
break;
case "3":
DealCard();
break;
case "4":
MoveToPrevious();
break;
case "5":
Move2PilesBack();
break;
case "6":
AmalgamateInMiddle();
break;
case "7":
PlayforMe();
break;
case "8":
ShowLowScores();
case "Q":
break;
default:
System.out.println("Try again");
}
drawCards();
} while (!(response.equals("Q")));
}
private void ShowLowScores() {
// TODO Auto-generated method stub
}
private void PlayforMe() {
// TODO Auto-generated method stub
}
private void AmalgamateInMiddle() {
// TODO Auto-generated method stub
}
private void Move2PilesBack() {
// TODO Auto-generated method stub
}
private void MoveToPrevious() {
// TODO Auto-generated method stub
}
private void DealCard() {
Card c = deck.removeTopCard();
System.out.println(c);
}
private void ShuffleCards() {
deck.shuffle();
}
private void drawCards() {
ArrayList<String> visibleCards = new ArrayList<String>();
for (Card card : onTable) {
visibleCards.add(card.number + card.suit + ".gif");
}
frame.cardDisplay(visibleCards);
}
private void PrintDeck() throws IOException {
for (Card card : deck.getDeck()) {
System.out.println(card);
}
}
private void printMenu() {
System.out.println("1 - Print the pack ");
System.out.println("2 - Shuffle");
System.out.println("3 - Deal a card");
System.out.println("4 - Move last pile onto previous one");
System.out.println("5 - Move last pile back over two piles");
System.out.println("6 - Amalgamate piles in the middle");
System.out.println("7 - Play for me");
System.out.println("8 - Show low scores");
System.out.println("q - Quit");
}
public static void main(String args[]) throws IOException {
System.out.println("****Welcome to patience is virtue****");
Game cardsgame = new Game();
cardsgame.runMenu();
System.out.println("****Thanks for playing****");
}
}
甲板-
import java.util.Collections;
import java.util.List;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.ArrayList;
import uk.ac.aber.dcs.cs12320.cards.Card;
public class Deck {
private ArrayList<Card> cards;
public Deck() {
cards = new ArrayList<Card>();
}
public void buildDeck() throws IOException {
List<String> cardLines = Files.readAllLines(Paths.get("cards.txt"));
for (int i = 0; i < cardLines.size(); i += 2) {
// System.out.println()
cards.add(new Card(cardLines.get(i), cardLines.get(i + 1)));
}
}
public Card removeTopCard() {
return cards.remove(0);
}
public List<Card> getDeck() {
return cards;
}
public void shuffle() {
Collections.shuffle(cards);
System.out.println(cards);
}
}
图形(框架)类-
package uk.ac.aber.dcs.cs12320.cards.gui;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Toolkit;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import javax.swing.JFrame;
import javax.swing.JPanel;
import uk.ac.aber.dcs.cs12320.cards.Card;
public class TheFrame extends JFrame {
public static boolean paintComponent;
private ThePanel canvas;
/**
* The constructor creates a Frame ready to display the cards
*/
public TheFrame() {
// Calls the constructor in the JFrame superclass passing up the name to
// display in the title
super("Becky's Patience");
// When you click on the close window button the window will be closed
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// This has North, East, South, West and Center positions for components
setLayout(new BorderLayout());
// This is what we will draw on (see the inner class below)
canvas = new ThePanel(null);
setSize(700, 300);
this.add(canvas, BorderLayout.CENTER);
setVisible(true); // Display the window
}
/**
* Displays all cards
*
* @param cards
* an arraylist of strings of the form 3h.gif for 3 of hearts
*/
/*public void cardDisplay(ArrayList<String> cards) {
canvas.cardDisplay(cards);
}*/
/**
* Call before cardDisplay at end of game (takes away the unused pile)
*/
public void allDone() {
canvas.allDone();
}
// /////////////////////////////////////////////////
/*
* This is an example of an inner class (like Russian dolls)
* It private so can only be seen by the outer class. It's part
* of the implementation of TheFrame. Because it extends JPanel we
* can draw on it
*/
Map<Card, Image> loadCards(ArrayList<Card> cards)
{
Map<Card, Image> cardImages = new HashMap<>();
for (Card card : cards)
{
String file = "cards/" + card.number + card.suit + ".gif";
Image image = Toolkit.getDefaultToolkit().getImage(file);
cardImages.put(card, image);
}
return cardImages;
}
private class ThePanel extends JPanel {
private Map<Card, Image> cardImages;
private ArrayList<Card> currentCardDisplayed;
private boolean done;
private ThePanel(ArrayList<Card> cards) {
setBackground(Color.cyan);
done = false;
cardImages = loadCards(cards);
}
private void cardDisplay(ArrayList<String> c) {
cards = c;
repaint();
}
private void allDone() {
done = true;
}
/**
* This is called automatically by Java when it want to draw this panel.
* So we have to put our drawing command in here.
* @param g Is the graphics object on which we draw.
*/
@Override
public void paintComponent(Graphics g) {
// Always do this. It's giving the JPanel superclass a change to
// paint its parts before we paint ours. E.g. we don't draw the
// edge of the window, one of the super-classes does that.
super.paintComponent(g);
int x = 20;
int y = 50;
// Loop through all the cards get each image in turn
for (Card card: currentCardDisplayed) {
g.drawImage(cardImages.get(card), x, y, 70, 100, this);
x += 72; // The x position is moved on in order to position the next card
// This could be improved by having a horizontal scroll bar
}
if (!done) {
// Draws the face-down top card of our pack of cards
String file = "cards/b.gif";
image = Toolkit.getDefaultToolkit().getImage(file);
g.drawImage(image, 100, 152, 70, 100, this);
}
}
} // ThePanel inner class
这是 gif 在其文件夹中的样子,该文件夹是我的图形类中的数组列表:
下面是文本卡数组列表洗牌后抽出的卡的样子:
卡片 gif 的 arrayList(包含卡片的所有 52 个 gif)位于图形类中,而我的 arrayList 包含文本形式的卡片组(我从文本文件导入)位于卡片组中。 gif arraylist 中的 gif 名称与我的文本卡片 arraylist 中的卡片名称相同(例如,3h.gif 是我的卡片 arraylist 中的 3h),因此我相信我可以使用 .equals 语句来匹配已绘制到 gif 的卡片。
任何关于我如何做到这一点的帮助都会很棒,我已经加粗了有助于表达我的意思的重要区域,感谢您的帮助:)!
更新:我在 Game 和 TheFrame 类中遇到一些错误。 TheFrame 中的卡片显示下方显示“卡片”,表示该卡片不存在。它还表示“图像”无法解析为 Paint 组件方法中的变量。在游戏中,drawCards 方法中的 CardDisplay 是“未定义类型 TheFrame”。如果有人可以帮助解决这些错误,那就太棒了:)!
最佳答案
您可能想要的不是保留 ArrayList <String> cards
在你的ThePanel
。相反,您希望在构建面板时加载图像对象,并将它们保存在 map 中。此方法将为您加载 map :
void loadCards(ArrayList<Card> cards)
{
Map<Card, Image> cardImages = new HashMap<>();
for (Card card : cards)
{
String file = "cards/" + card.number + card.suit + ".gif";
image = Toolkit.getDefaultToolkit().getImage(file);
cardImages.put(card, image);
}
return cardImages;
}
将此方法的结果存储在您的 ThePanel 中:
private class ThePanel extends JPanel {
private Map<Card, Image> cardImages;
private ArrayList<Card> currentCardDisplayed;
private boolean done;
private ThePanel(ArrayList<Card> cards) {
setBackground(Color.cyan);
done = false;
cardImages = loadCards(cards);
}
然后在重画中,您可以执行以下操作:
for (Card card: currentCardDisplayed) {
g.drawImage(cardImages.get(card), x, y, 70, 100, this);
....
}
最后,既然您将使用映射,那么实现 Card.equals 和 Card.hashCode 可能是个好主意!
关于java - 将抽取的卡片与 ArrayList 中的 gif 进行匹配?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30052721/
我正在编写一个具有以下签名的 Java 方法。 void Logger(Method method, Object[] args); 如果一个方法(例如 ABC() )调用此方法 Logger,它应该
我是 Java 新手。 我的问题是我的 Java 程序找不到我试图用作的图像文件一个 JButton。 (目前这段代码什么也没做,因为我只是得到了想要的外观第一的)。这是我的主课 代码: packag
好的,今天我在接受采访,我已经编写 Java 代码多年了。采访中说“Java 垃圾收集是一个棘手的问题,我有几个 friend 一直在努力弄清楚。你在这方面做得怎么样?”。她是想骗我吗?还是我的一生都
我的 friend 给了我一个谜语让我解开。它是这样的: There are 100 people. Each one of them, in his turn, does the following
如果我将使用 Java 5 代码的应用程序编译成字节码,生成的 .class 文件是否能够在 Java 1.4 下运行? 如果后者可以工作并且我正在尝试在我的 Java 1.4 应用程序中使用 Jav
有关于why Java doesn't support unsigned types的问题以及一些关于处理无符号类型的问题。我做了一些搜索,似乎 Scala 也不支持无符号数据类型。限制是Java和S
我只是想知道在一个 java 版本中生成的字节码是否可以在其他 java 版本上运行 最佳答案 通常,字节码无需修改即可在 较新 版本的 Java 上运行。它不会在旧版本上运行,除非您使用特殊参数 (
我有一个关于在命令提示符下执行 java 程序的基本问题。 在某些机器上我们需要指定 -cp 。 (类路径)同时执行java程序 (test为java文件名与.class文件存在于同一目录下) jav
我已经阅读 StackOverflow 有一段时间了,现在我才鼓起勇气提出问题。我今年 20 岁,目前在我的家乡(罗马尼亚克卢日-纳波卡)就读 IT 大学。足以介绍:D。 基本上,我有一家提供簿记应用
我有 public JSONObject parseXML(String xml) { JSONObject jsonObject = XML.toJSONObject(xml); r
我已经在 Java 中实现了带有动态类型的简单解释语言。不幸的是我遇到了以下问题。测试时如下代码: def main() { def ks = Map[[1, 2]].keySet()
一直提示输入 1 到 10 的数字 - 结果应将 st、rd、th 和 nd 添加到数字中。编写一个程序,提示用户输入 1 到 10 之间的任意整数,然后以序数形式显示该整数并附加后缀。 public
我有这个 DownloadFile.java 并按预期下载该文件: import java.io.*; import java.net.URL; public class DownloadFile {
我想在 GUI 上添加延迟。我放置了 2 个 for 循环,然后重新绘制了一个标签,但这 2 个 for 循环一个接一个地执行,并且标签被重新绘制到最后一个。 我能做什么? for(int i=0;
我正在对对象 Student 的列表项进行一些测试,但是我更喜欢在 java 类对象中创建硬编码列表,然后从那里提取数据,而不是连接到数据库并在结果集中选择记录。然而,自从我这样做以来已经很长时间了,
我知道对象创建分为三个部分: 声明 实例化 初始化 classA{} classB extends classA{} classA obj = new classB(1,1); 实例化 它必须使用
我有兴趣使用 GPRS 构建车辆跟踪系统。但是,我有一些问题要问以前做过此操作的人: GPRS 是最好的技术吗?人们意识到任何问题吗? 我计划使用 Java/Java EE - 有更好的技术吗? 如果
我可以通过递归方法反转数组,例如:数组={1,2,3,4,5} 数组结果={5,4,3,2,1}但我的结果是相同的数组,我不知道为什么,请帮助我。 public class Recursion { p
有这样的标准方式吗? 包括 Java源代码-测试代码- Ant 或 Maven联合单元持续集成(可能是巡航控制)ClearCase 版本控制工具部署到应用服务器 最后我希望有一个自动构建和集成环境。
我什至不知道这是否可能,我非常怀疑它是否可能,但如果可以,您能告诉我怎么做吗?我只是想知道如何从打印机打印一些文本。 有什么想法吗? 最佳答案 这里有更简单的事情。 import javax.swin
我是一名优秀的程序员,十分优秀!