我正计划制作一个游戏,并希望窗口具有 3 种不同的模式:一个 800 x 500 的小窗口、一个最大化的窗口和一个全屏窗口。我计划使用主动渲染将图形绘制jframe
到. 我正在使用带有 2 个缓冲区的 a。为了解决将已经可见的屏幕设置为全屏的问题,每次窗口的尺寸都发生变化(它不能由窗口本身调整大小,只能通过程序中的按钮调整),给定适当的大小,创建一个新的,并且将包含组件的a添加到. 出于某种原因,每次我用来自paint
components
layeredpane
bufferstrategy
jframe
jpanel
paint
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;
}
}
}