gpt4 book ai didi

java - 我的游戏线程出了什么问题?

转载 作者:行者123 更新时间:2023-12-02 06:05:39 24 4
gpt4 key购买 nike

我已经尝试实现一个游戏线程来利用循环来实现逻辑有一段时间了。前不久我在这里发了一个问题,希望大家不介意跟进。

我已经设法从我的研究中拼凑出这段代码:

public class GameView extends SurfaceView implements SurfaceHolder.Callback 
{
class GameThread extends Thread
{
//states
public static final int STATE_LOSE = 1;

public static final int STATE_PAUSE = 2;

public static final int STATE_READY = 3;

public static final int STATE_RUNNING = 4;

private Paint m_paint;

//canvas dimensions
private int m_canvasWidth;

private int m_canvasHeight;

private long m_lastTime;

private boolean m_run = false;

private int m_mode;

public ImageView ship;
RelativeLayout.LayoutParams shipParams;

// Handle to the surface manager
private SurfaceHolder m_surfaceHolder;

public GameThread(SurfaceHolder surfaceHolder, Context context, Handler handler)
{
m_surfaceHolder = surfaceHolder;
}

//Initialise the game
public void doStart()
{

synchronized (m_surfaceHolder)
{
resetGame();
m_lastTime = System.currentTimeMillis() + 100;
setState(STATE_RUNNING);
ship = (ImageView) findViewById(R.id.imageView1);
shipParams = (RelativeLayout.LayoutParams)ship.getLayoutParams();
}
}

public void pause()
{
synchronized (m_surfaceHolder)
{
if (m_mode == STATE_RUNNING)
setState(STATE_PAUSE);
}
}

@Override
public void run()
{
while (m_run)
{
Canvas c = null;
try
{
c = m_surfaceHolder.lockCanvas(null);
synchronized (m_surfaceHolder)
{
if (m_mode == STATE_RUNNING)
{
updateGame();
}
doDraw(c);
}
}
catch(Exception e){}
finally
{

if (c != null)
{
m_surfaceHolder.unlockCanvasAndPost(c);
}
}
}
}

public void setRunning(boolean b)
{
m_run = b;
}


public void setState(int mode)
{
synchronized (m_surfaceHolder)
{
setState(mode, null);
}
}


public void setState(int mode, CharSequence message)
{
synchronized (m_surfaceHolder)
{
m_mode = mode;
}
}

public void setPlayers(boolean onePlayer)
{

}


public void setSurfaceSize(int width, int height)
{
synchronized (m_surfaceHolder)
{
m_canvasWidth = width;
m_canvasHeight = height;
}
}


public void unpause()
{
synchronized (m_surfaceHolder)
{
m_lastTime = System.currentTimeMillis() + 100;
}
setState(STATE_RUNNING);
}


private void doDraw(Canvas canvas)
{
canvas.drawARGB(255, 0, 0, 0);
}

private void updateGame()
{
long now = System.currentTimeMillis();
if (m_lastTime > now)
return;
double elapsed = (now - m_lastTime) / 1000.0;
m_lastTime = now;
System.out.print("HELLO WORLD");
shipParams.topMargin++;
ship.setLayoutParams(shipParams);
}

private boolean collided(Rect rectangle)
{
return false;
}

public boolean foundWinner()
{
return false;
}

public void resetGame()
{

}

public void handleInput(MotionEvent event)
{

}
}

private Context m_context;

private GameThread m_thread;

private Handler m_handler;

public GameView(Context context, AttributeSet attrs)
{
super(context, attrs);


SurfaceHolder holder = getHolder();
holder.addCallback(this);

m_handler = new Handler() {
@Override
public void handleMessage(Message m) {

Bundle b = m.getData();
MotionEvent e = b.getParcelable("event");
m_thread.handleInput(e);
}
};

m_thread = new GameThread(holder, context, m_handler);
setFocusable(true);
};


public GameThread getThread()
{
return m_thread;
}

@Override
public void onWindowFocusChanged(boolean hasWindowFocus)
{
if (!hasWindowFocus)
m_thread.pause();
}

public void surfaceChanged(SurfaceHolder holder, int format, int width, int height)
{
m_thread.setSurfaceSize(width, height);
}


public void surfaceCreated(SurfaceHolder holder)
{
if(m_thread.getState() == State.TERMINATED)
{
m_thread = new GameThread(getHolder(), m_context, m_handler);
m_thread.setRunning(true);
m_thread.start();
m_thread.doStart();
}
else
{
m_thread.setRunning(true);
m_thread.start();
}
}

public void surfaceDestroyed(SurfaceHolder holder)
{
boolean retry = true;
m_thread.setRunning(false);
while (retry)
{
try
{
m_thread.join();
retry = false;
}
catch (InterruptedException e)
{
}
}

}

@Override
public boolean onTouchEvent(MotionEvent event)
{
return true;
}
}

我相当确定我的问题就在这里,而且这只是一个逻辑问题。对我来说一切似乎都很好,但是我需要帮助。

我尝试在第 47 行绘制图像,并定义在第 153 行的更新方法中发生的移动。我还放置了一条打印行以进行额外的调试,但该行没有显示。

我被难住了。

任何帮助都会很棒,谢谢。

如果需要的话,这是我的其他代码:

编辑:我应该注意,我在代码中没有收到任何类型的错误,它只是没有响应

最佳答案

您将 m_run 初始化为 false,那么在 run() 方法的 while 循环中,您必须将其设置为 true。改为true,线程就可以正常工作了。

关于java - 我的游戏线程出了什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22302178/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com