有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java制作一个带有活动呈现的screenmanager类

我正在计划制作一个游戏,希望窗口有三种不同的模式:一个800 x 500的小窗口,一个最大化窗口和一个全屏窗口。我计划使用主动渲染将图形绘制到jframepaint中的components中。我正在使用一个带有两个缓冲区的bufferstrategy。为了解决将一个已经可见的屏幕设置为全屏的问题,每次窗口的尺寸改变(窗口本身不能调整大小,只能通过程序中的按钮调整大小)时,将创建一个新的jframe,给定适当的大小,并将包含paint组件的jpanel添加到frame。出于某种原因,每次我用bufferstrategy中的图形绘制某个东西时,都会有一个偏移量(在0,0处绘制某个东西,会显示在-3,-20左右,我不知道为什么。当我只是用图形绘制或用图形调用绘制组件(在当前jframe的分层面板上)时,就会发生这种情况。如果您能提供任何帮助,我们将不胜感激enter code here

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class ScreenManager {

private GraphicsDevice device;
private JFrame window;
private int sizeState;
private JPanel contentPane;
private String title;
private Rectangle maxBounds;    

public static final int SMALL_WINDOW = 1;
public static final int MAXIMIZED_WINDOW = 2;
public static final int FULLSCREEN_WINDOW = 3;

private static final int SMALL_WIDTH = 800;
private static final int SMALL_HEIGHT = 500;

public ScreenManager(String s){     
    NullRepaintManager.install();
    title = s;      
    GraphicsEnvironment environment = GraphicsEnvironment.getLocalGraphicsEnvironment();        
    maxBounds = environment.getMaximumWindowBounds();
    device = environment.getDefaultScreenDevice();  
    contentPane = new JPanel();             
    resetJFrame();      
    setSmallWindow();       
}

public JPanel getPanel(){
    return contentPane;
}

public Graphics2D getGraphics(){
    while(true){
        if(window != null){     
    try{
    return (Graphics2D) window.getBufferStrategy().getDrawGraphics();
    }catch(Exception e){}
    }       
}
}
public void update(){
    if(window != null && !window.getBufferStrategy().contentsLost()){
        window.getBufferStrategy().show();
    }

    Toolkit.getDefaultToolkit().sync();
}

public int getWidth(){
    if(window != null){
        return contentPane.getWidth();
    }
    return 0;
}

public int getHeight(){
    if(window != null){
        return contentPane.getHeight();
    }
    return 0;
}

public void paintComponents(Graphics2D g){      
        if(window != null){
            contentPane.paintComponents(g);
                }
        }

public void closeWindow(){          
    System.exit(0);
}

public void setSmallWindow(){
    if(window != null && sizeState != ScreenManager.SMALL_WINDOW){
    resetJFrame();      
    window.setSize(ScreenManager.SMALL_WIDTH, ScreenManager.SMALL_HEIGHT);      
    contentPane.setSize(ScreenManager.SMALL_WIDTH, ScreenManager.SMALL_HEIGHT);
    window.setLocationRelativeTo(null);         
    window.setVisible(true);        
    window.createBufferStrategy(2);         
    sizeState = ScreenManager.SMALL_WINDOW;     
}
}

public void setMaximizedWindow(){
    if(window != null && sizeState != ScreenManager.MAXIMIZED_WINDOW){
    resetJFrame();
    window.setSize((int) maxBounds.getWidth(), (int) maxBounds.getHeight());    
    contentPane.setSize(window.getWidth(), window.getHeight());
    window.setLocation(0,0);
    window.setVisible(true);        
    window.createBufferStrategy(2);     
    sizeState = ScreenManager.MAXIMIZED_WINDOW;     
}
}

public void setFullScreenWindow(){
    if(window != null && sizeState != ScreenManager.FULLSCREEN_WINDOW){
        resetJFrame();      
        window.setUndecorated(true);
        device.setFullScreenWindow(window);
        contentPane.setSize(window.getWidth(), window.getHeight());
        window.createBufferStrategy(2);
        sizeState = ScreenManager.FULLSCREEN_WINDOW;            
    }
}

private void resetJFrame(){
    if(sizeState == ScreenManager.FULLSCREEN_WINDOW){
        device.setFullScreenWindow(null);
    }

    if(window != null){
        window.dispose();
        window = null;
    }

    window = new JFrame(title);         
    window.setResizable(false);         
    window.setIgnoreRepaint(true);
    window.addWindowListener(new WindowExitAdapter());
    window.add(contentPane);            
    contentPane.setOpaque(false);       
}

private class WindowExitAdapter extends WindowAdapter{

    public void windowClosing(WindowEvent 
e){                     
        closeWindow();
    }               
}
 }

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

public class ScreenManagerTest implements ActionListener{

private ScreenManager sm;
private JButton fullscreenButton;
private JButton smallScreenButton;
private JButton maxScreenButton;
private JButton quitButton;
private boolean isRunning = true;

private int sizeState = 1;


public static void main(String[] args) {
    new ScreenManagerTest().go();       
}

public void go(){
    sm = new ScreenManager("Nertz! Solitaire");
    sm.getPanel().setLayout(new BorderLayout());
    fullscreenButton = new JButton("Set Fullscreen");       
    sm.getPanel().add(fullscreenButton, BorderLayout.CENTER);
    smallScreenButton = new JButton("Set Small Screen");        
    sm.getPanel().add(smallScreenButton, BorderLayout.WEST);
    maxScreenButton = new JButton("Set Max Screen");        
    sm.getPanel().add(maxScreenButton, BorderLayout.EAST);
    quitButton = new JButton("Exit Program");       
    sm.getPanel().add(quitButton, BorderLayout.SOUTH);
    fullscreenButton.addActionListener(this);
    smallScreenButton.addActionListener(this);
    maxScreenButton.addActionListener(this);
    quitButton.addActionListener(this);

    while(isRunning == true){           
        switch(sizeState){

        case ScreenManager.FULLSCREEN_WINDOW:
            sm.setFullScreenWindow();
            break;
        case ScreenManager.MAXIMIZED_WINDOW:
            sm.setMaximizedWindow();
            break;
        case ScreenManager.SMALL_WINDOW:
            sm.setSmallWindow();
            break;
        }
        draw(sm.getGraphics());         
        try{
            Thread.sleep(20);
        }catch(Exception e){}
    }
    sm.closeWindow();
}

public void draw(Graphics2D g){ 
    sm.paintComponents(g);
    sm.update();

    g.dispose();
}

public void actionPerformed(ActionEvent event){
    if(event.getSource() == fullscreenButton){
        sm.setFullScreenWindow();
        sizeState = ScreenManager.FULLSCREEN_WINDOW;
    }
    if(event.getSource() == smallScreenButton){
        sm.setSmallWindow();
        sizeState = ScreenManager.SMALL_WINDOW;
    }
    if(event.getSource() == maxScreenButton){
        sm.setMaximizedWindow();    
        sizeState = ScreenManager.MAXIMIZED_WINDOW;
    }
    if(event.getSource() == quitButton){
        isRunning = false;  
    }
}
}

共 (1) 个答案

  1. # 1 楼答案

    for some reason, every time I paint something with the graphics from the bufferstrategy, there is an offset (painting something at 0,0, would show up around -3, -20, and I'm not sure why.

    只是一个疯狂的猜测。。。也许你不是从(0,0)开始画画,而是从帧边界0开始画画,因为(-3,-20)点似乎是窗口零坐标(小边界@左和~20px窗口标题)

    如果实际上是从(0,0)绘制,但坐标移动到(-3,-20),而这实际上是一个窗口边框,则可以在绘制方法的开始处添加一个小面片:

    protected void paintComponent ( Graphics g )
    {
        Point wl = SwingUtilities.getWindowAncestor ( this ).getLocationOnScreen ();
        Point los = this.getLocationOnScreen ();
        Point zero = new Point ( los.x-wl.x, los.y-wl.y );
        g.translate ( zero.x, zero.y );
    
        // ...
    }
    

    但我仍然无法解释为什么会发生这种情况。在窗口模式和全屏模式之间切换时,可能您正在保存零坐标,这会导致此类问题