- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
(不是这样)这里是简短的问题。我正致力于使用 Swing 作为 UI 而不是控制台来制作一个简单的 roguelike(这使得在 Eclipse 等方面更容易使用)但我似乎遇到了障碍。
我遇到的问题是,当我进入游戏循环时,UI 无法正常显示。我得到一个丑陋的窗框,在整个过程中给我带来“纸牌”效果,并且在运行它时 RAM 使用量迅速增加。
我是否遗漏了一些关于 Swing 的关键信息?我是否必须使用 Swing 的并发设置来执行此操作?如果是这样,最好的方法是什么?
完整代码如下:
package roguelike;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.util.LinkedList;
import javax.swing.*;
import javax.swing.text.*;
public class roguelike {
Color c_black = new Color(0x000000);
Color c_white = new Color(0xffffff);
Color c_red = new Color(0xff0000);
Color c_blue = new Color(0x0000ff);
Color c_green = new Color(0x00ff00);
UI ui = null;
Player me = null;
Map gamemap = null;
LinkedList<Character> keyqueue = new LinkedList<Character>();
int charheight = 20;
int charwidth = 80;
public static void main(String[] args){
SwingUtilities.invokeLater(new Runnable(){
public void run(){
roguelike game = new roguelike();
game.run();
}
});
}
public roguelike(){
gamemap = new Map();
ui = new UI(charheight,charwidth,"Monospaced");
me = new Player();
}
private class UI extends JFrame implements KeyListener{
private static final long serialVersionUID = 9065411532125953842L;
JPanel disp_screen = null;
JTextPane disp_screen_text = null;
StyledDocument disp_doc = null;
Font mono_norm = null;
int pxheight = 0;
int pxwidth = 0;
String[][] ctemp = new String[charheight][charwidth];
String[][] stemp = new String[charheight][charwidth];
public UI(int h,int w,String fontname){
setVisible(true);
charheight = h;
charwidth = w;
addKeyListener(this);
this.setResizable(false);
mono_norm = new Font(fontname,0,25);
initScreen(h,w);
add(disp_screen);
makeStyles();
try {
disp_doc.insertString(0, "12345678901234567890123456789012345678901234567890123456789012345678901234567890\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20", disp_doc.getStyle("Default"));
} catch (BadLocationException e) {
e.printStackTrace();
}
Dimension temp = disp_screen.getSize();
this.setSize(temp);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
pack();
try {
disp_doc.remove(0, disp_doc.getLength());
} catch (BadLocationException e) {
e.printStackTrace();
}
renderMap(gamemap.getText(),gamemap.getStyles());
}
@Override
public void keyPressed(KeyEvent e) {
// TODO Auto-generated method stub
}
@Override
public void keyReleased(KeyEvent e) {
// TODO Auto-generated method stub
}
@Override
public void keyTyped(KeyEvent e) {
keyqueue.add(e.getKeyChar());
}
private void initScreen(int height, int width){
FontMetrics metric = getFontMetrics(mono_norm);
String temp = null;
//generate a string of the right width from which to grab metrics
for(int x=0;x<=width;x++){
temp += '.';
}
pxwidth = SwingUtilities.computeStringWidth(metric, temp);
pxheight = (metric.getHeight())*charheight;
disp_screen = new JPanel();
disp_screen_text = new JTextPane();
disp_screen_text.setEditable(false);
disp_screen_text.setAlignmentX(LEFT_ALIGNMENT);
disp_screen_text.setAlignmentY(TOP_ALIGNMENT);
disp_screen_text.setFont(mono_norm);
disp_screen_text.setBackground(c_black);
disp_screen_text.setForeground(c_green);
disp_doc = disp_screen_text.getStyledDocument();
disp_screen.add(disp_screen_text);
disp_screen.setAlignmentX(LEFT_ALIGNMENT);
disp_screen.setAlignmentY(TOP_ALIGNMENT);
disp_screen.setLayout(new BoxLayout(disp_screen,BoxLayout.Y_AXIS));
}
private void makeStyles(){
//The default style removes all special formatting and returns the text to standard nonsense
Style sty_default = disp_doc.addStyle("Default", null);
StyleConstants.setFontFamily(sty_default, "Monospaced");
StyleConstants.setFontSize(sty_default, 18);
StyleConstants.setForeground(sty_default, c_green);
StyleConstants.setBackground(sty_default, c_black);
StyleConstants.setItalic(sty_default, false);
StyleConstants.setBold(sty_default, false);
//StyleConstants.setSpaceAbove(sty_default, 0);
//StyleConstants.setSpaceBelow(sty_default, 0);
//The following styles apply certain effects. They are meant to be set without replacing styles
Style sty_bold = disp_doc.addStyle("Bold", disp_doc.getStyle("Default"));
StyleConstants.setBold(sty_bold,true);
Style sty_ital = disp_doc.addStyle("Italic", disp_doc.getStyle("Default"));
StyleConstants.setItalic(sty_ital, true);
}
private void clearMap(){
try {
disp_doc.remove(0, disp_doc.getLength());
} catch (BadLocationException e1) {
e1.printStackTrace();
}
try {
//CLEAR THE MAP
//For every row...
for(int y=0;y<charheight;y++){
//For every column location in a row...
for(int x=0;x<charwidth;x++){
disp_doc.insertString(disp_doc.getLength(),".", disp_doc.getStyle("Default"));
}
disp_doc.insertString(disp_doc.getLength(),"\n", disp_doc.getStyle("Default"));
}
} catch (BadLocationException e){
e.printStackTrace();
}
}
public void renderMap(String[][] chars, String[][] styles){
System.out.print("Rendering map...");
clearMap();
ctemp = chars;
stemp = styles;
try {
//For every row...
for(int y=0;y<charheight;y++){
//For every column location in a row...
for(int x=0;x<charwidth;x++){
if(ctemp[y][x] != null){
if(stemp[y][x] == "D"){
disp_doc.remove((y*charwidth)+x, 1);
disp_doc.insertString((y*charwidth)+x,ctemp[y][x], disp_doc.getStyle("Default"));
} else if(stemp[y][x] == "B"){
disp_doc.remove((y*charwidth)+x, 1);
disp_doc.insertString((y*charwidth)+x,ctemp[y][x], disp_doc.getStyle("Bold"));
} else if(stemp[y][x] == "I"){
disp_doc.remove((y*charwidth)+x, 1);
disp_doc.insertString((y*charwidth)+x,ctemp[y][x], disp_doc.getStyle("Italic"));
} else{
disp_doc.remove((y*charwidth)+x, 1);
disp_doc.insertString((y*charwidth)+x,ctemp[y][x], disp_doc.getStyle("Default"));
}
}
}
}
} catch (BadLocationException e){
e.printStackTrace();
System.err.print(e.getCause());
}
}
}
//Handles the virtualized information of characters on the map. Does NOT handle display of map on screen
//Displaying the screen happens by passing required data to the ui member
private class Map{
//Holds an array of map characters
String[][] text = new String[charheight][charwidth];
//Holds an array of styles associated with each map character
String[][] styles = new String[charheight][charwidth];
public Map(){
}
public String[][] getText(){
return text;
}
public String[][] getStyles(){
return styles;
}
public void putch(String thing, String styledef,int y, int x){
text[y][x] = thing;
styles[y][x] = styledef;
}
}
private class Player{
//Player location, [y][x]
int[] location = {0,0};
String sym = "@";
public Player(){
}
public int[] getLocation(){
return location;
}
public String getSymbol(){
return sym;
}
public void setLocation(int y, int x){
location[0]=y;
location[1]=x;
}
public void setSymbol(String newsym){
sym = newsym;
}
public void move(int dir){
//Movement will be handled in an 8 directional fashion
//North is 1, like below
// 812
// 703
// 654
//////////////////////
switch(dir){
case 0:
break;
case 1:
location[0] += 1;
break;
case 2:
location[0] += 1;
location[1] += 1;
break;
case 3:
location[1] += 1;
break;
case 4:
location[0] -= 1;
location[1] += 1;
break;
case 5:
location[0] -= 1;
break;
case 6:
location[0] -= 1;
location[1] -= 1;
break;
case 7:
location[1] -= 1;
break;
case 8:
location[0] += 1;
location[1] -= 1;
default:
System.err.print("ERROR! "+dir+" is not a valid direction!");
break;
}
}
}
/////////////////////////////////////////////////////
/////////////FUNCTIONS///////////////////////////////
/////////////////////////////////////////////////////
public void run(){
boolean running = true;
while(running){
//Render Map
gamemap.putch(me.getSymbol(), "D", me.getLocation()[0], me.getLocation()[1]);
ui.renderMap(gamemap.getText(), gamemap.getStyles());
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
//Wait for player input
if(keyqueue.isEmpty()){
continue;
}
//Act on input
else{
char input = keyqueue.getFirst();
keyqueue.removeFirst();
if(input == 'w'){
me.move(1);
}
if(input =='a'){
me.move(7);
}
if(input == 's'){
me.move(5);
}
if(input == 'd'){
me.move(3);
}
}
}
}
}
最佳答案
Swing 应用程序必须是事件驱动的 - 您的 game.run()
调用将阻止 Swing 执行任何其他有用的操作。请注意,“事件”可以是用户事件、计时器或其他可能的东西。
如果您的设计需要 game.run()
或类似的东西来运行并且永远不会返回,它可以在另一个线程(甚至是 SwingWorker 后台线程)上完成,但所有 UI 组件都必须在 Swing 线程上访问。
一个建议:你的键盘处理可以很容易地用 KeyListener 完成。您编写,附加到窗口或其他组件上的事件处理程序,然后每当用户按下该键时将被调用 - 即您不需要使用此设计进行轮询。
关于带有游戏循环的 Java 和 Swing,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11569501/
我正在开发一个摆动程序以显示多张图片。并且可以旋转图片(每个图片都以JComponent实现)。 问题是,当图片旋转时,JComponent的边框不会改变,因此图片会被剪切。 有什么办法也可以旋转边框
我有一个 JPanel 和一个 JButton 向量,我想将每个按钮添加到面板。 我遇到的问题是我有一个代表按钮向量的变量 btns,但宏函数只是将它视为一个符号,而不是一个向量。有没有办法以某种方式
我有一个 swing 应用程序,它覆盖 javax.swing.text.Document 以将基础文档的内容限制为某些字符和文本长度。我想将我的应用程序移植到 Javafx,但我不知道此类是否有 J
我有一个带有面板的简单应用程序,我想在单击它时暂停并重新开始绘画。 object ModulusPatterns extends SimpleSwingApplication { var dela
我似乎无法在 Swing 中强制布局。我有一个 JComponent添加到 JLayeredPane我在 JComponent 上设置了边框.然后,我想立即重新绘制所有内容 - 而不是像 invali
我有一个 Swing 应用程序,我想通过将外部文件从 Windows 资源管理器拖到应用程序上来导入外部文件。我有这个基本功能工作。但是,我想将默认的拖放光标图标更改为应用程序适当的光标。当鼠标键被按
我想在我的 Scala 摆动应用程序中使用一棵树,但该组件在 API 中不可用。 是否包装了 JTree存在吗? 如果没有,你对制作有什么建议吗? 谢谢 最佳答案 即使您可以在 Scala 程序中直接
我目前正在努力使我的 Swing 应用程序看起来更好。我想在这些方面实现一些目标: 这个想法是让每个框都有一个漂亮的标题,背景类似于上图。使用基本的 Swing 组件,我能得到的最接近的东西是添加 T
这是我在 Scala 中使用 Swing 的第一次实验,并且对下面的代码有一些疑问。它所做的只是生成一个带有可改变颜色的彩色矩形的窗口。请随时回答一个或任何一个问题。 1) 我在下面使用了 Java
一个愚蠢的问题,但我真的无法让它起作用:我在 Swing 应用程序中有一些长时间运行的过程,可能需要几分钟。我想在此过程进行时向用户显示进度对话框。我还想阻止用户执行进一步的操作,例如在进程进行时按下
如何获取秋千组件的默认背景色?我的意思是JPanel的默认背景色? 最佳答案 要获取创建面板时将使用的 DEFAULT 颜色,请使用: Color color = UIManager.getColor
我想更改特定表头的背景颜色。在我的应用程序中,我必须将当前月份的标题颜色设置为红色。 我的代码在这里:: jTable1.getTableHeader(). setDefaultRe
我正在努力使在 Java3D Canvas 上显示 Java Swing 组件并与之交互成为可能。我通过将透明 JPanel 绘制到缓冲图像来显示组件,然后使用 J3DGraphics2D 在 Can
嗨 当我在 swing 中创建按钮时,它会在文本周围添加边框,从而使按钮变大一点。 现在,我确实需要那个屏幕空间,我通常做的是创建一个文本项(禁用),它创建更小的组件大小(文本周围更小的空间)并向其添
有scala.swing.BoxPanel,但它似乎没有捕获重点,因为没有与javax.swing.Box工厂方法createHorizontalStrut等效的东西、createHorizo
我的 scala swing 应用程序中有一个 BoxPanel 按钮,这对我来说很难看,因为按钮的大小各不相同。我已将其更改为 GridPanel,但随后它们也垂直填充了面板,我发现这更难看。我怎样
我刚开始学习 Scala,作为学习过程的一部分,我一直在尝试使用 Swing 编写一些简单的脚本。 这是一个非常精简的例子,它展示了我所看到的问题。 SimpleSwingApp: import sc
我刚刚开始使用 clojure 和跷跷板制作 GUI 应用程序。它只创建一个 JFrame 和几个组件。这是代码。 main 函数除了调用 start-gui 什么也不做并在返回后立即退出。 (ns
Scala 是一种很棒的语言,但不幸的是缺少库文档。如何更改组件的初始大小?我什么都没有(故意),但无论如何都希望它是一定的。我目前有 ... contents = new BoxPanel(Orie
基本设置是这样的:我有一个垂直的 JSplitPane,我希望它有一个固定大小的底部组件和一个调整大小的顶部组件,我通过调用 setResizeWeight(1.0) 来完成。在此应用程序中,有一个按
我是一名优秀的程序员,十分优秀!