- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
第一次发帖:)
我正在编写 Pong 游戏的代码,但碰壁了。我的代码有效,但我想稍微花点时间。我有 3 张图像要使用(每个桨一张,球一张)。由于代码是现在编写的,我只有长方形的桨和一个正方形的球。
这是我的代码:
// pongGame.cpp
#include "stdafx.h"
#include <string>
#include <Windows.h>
#include <iostream>
#include <conio.h>
#include <sstream>
#include <math.h>
#include <gl\gl.h>
#include <gl\glu.h>
#include "GL/freeglut.h"
#pragma comment(lib, "Opengl32.lib")
#define VK_W 0x57
#define VK_S 0x53
using namespace std;
//window size and update rate
int width = 500;
int height = 300;
int interval = 1000 / 60; // 60 frames per-second
//scoring
int p1Score = 0; //Player 1's score
int p2Score = 0; //Player 2's score
int winner = 0;
//the paddles
int paddleWidth = 10;
int paddleHeight = 80;
int paddleSpeed = 3;
float paddleLeftX = 10.0f;
float paddleLeftY = 50.0f;
float paddleRightX = width - paddleWidth - 10;
float paddleRightY = 50;
//the ball
float ballPositionX = width / 2;
float ballPositionY = height / 2;
float ballDirectionX = -1.0f;
float ballDirectionY = 0.0f;
int ballSize = 8;
int ballSpeed = 4;
std::string int2str(int x) { //used to convert an integer to a string
std::stringstream ss;
ss << x;
return ss.str( );
}
void drawText(float x, float y, std::string text) {
glRasterPos2f(x, y);
glutBitmapString(GLUT_BITMAP_8_BY_13, (const unsigned char*)text.c_str());
}
void drawPaddle(float x, float y, float width, float height) {
glBegin(GL_QUADS);
glVertex2f(x, y);
glVertex2f(x + width, y);
glVertex2f(x + width, y + height);
glVertex2f(x, y + height);
glEnd();
}
void draw() {
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glLoadIdentity();
//draws the paddles
drawPaddle(paddleLeftX, paddleLeftY, paddleWidth, paddleHeight);
drawPaddle(paddleRightX, paddleRightY, paddleWidth, paddleHeight);
//draws the ball
drawPaddle(ballPositionX - ballSize / 2, ballPositionY- ballSize / 2, ballSize, ballSize);
//draws the score at the top center of the screen
drawText(width / 2 - 10, height - 15, int2str(p1Score) + ":" + int2str(p2Score));
glutSwapBuffers();
}
void enable2D(int width, int height) {
glViewport(0, 0, width, height);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrtho(0.0f, width, 0.0f, height, 0.0f, 1.0f);
glMatrixMode (GL_MODELVIEW);
glLoadIdentity();
}
void keyboard() { //allows teh paddles to be controled from the keyboard
//moves left paddle (player 1)
if (GetAsyncKeyState(VK_W))
paddleLeftY += paddleSpeed; //move paddle up with "W" key
if (GetAsyncKeyState(VK_S))
paddleLeftY -= paddleSpeed; //move paddle down with "S" key
//moves right paddle (player 2)
if (GetAsyncKeyState(VK_UP))
paddleRightY += paddleSpeed; //move paddle up with "up" arrow
if (GetAsyncKeyState(VK_DOWN))
paddleRightY -= paddleSpeed; //move paddle down with "down" arrow
}
void vec2_norm(float& x, float &y) {
float length = sqrt((x * x) + (y * y));
if(length != 0.0f) {
length = 1.0f / length;
x *= length;
y *= length;
}
}
void updateBall() { //allows teh ball to move
ballPositionX += ballDirectionX * ballSpeed;
ballPositionY += ballDirectionY * ballSpeed;
if(ballPositionX < paddleLeftX + paddleWidth && ballPositionX > paddleLeftX && ballPositionY < paddleLeftY + paddleHeight && ballPositionY > paddleLeftY) { //if ball is hit by player 1's paddle
float t = ((ballPositionY - paddleLeftY) / paddleHeight) - 0.5f;
ballDirectionX = fabs(ballDirectionX);
ballDirectionY = t;
}
if (ballPositionX > paddleRightX && ballPositionX < paddleRightX + paddleWidth && ballPositionY < paddleRightY + paddleHeight && ballPositionY > paddleRightY) { //if ball is hit by player 2's paddle
float t = ((ballPositionY - paddleRightY) / paddleHeight) - 0.5f;
ballDirectionX = -fabs(ballDirectionX);
ballDirectionY = t;
}
if (ballPositionX < 0) { //if ball hits the top wall
++p2Score;
ballPositionX = width / 2;
ballPositionY = height / 2;
ballDirectionX = fabs(ballDirectionX);
ballDirectionY = 0;
}
if (ballPositionX > width) { //if ball hits the right wall
++p1Score;
ballPositionX = width / 2;
ballPositionY = height / 2;
ballDirectionX = -fabs(ballDirectionX);
ballDirectionY = 0;
}
if (ballPositionY > height) { //ball hits top wall
ballDirectionY = -fabs(ballDirectionY);
}
if (ballPositionY < 0) { //ball hits bottom wall
ballDirectionY = fabs(ballDirectionY);
}
vec2_norm(ballDirectionX, ballDirectionY);
}
void gameOverCheck() {
const int maxScore = 10;
if(p1Score == maxScore) {
cout << "Player 1 Wins!" << endl;
winner = 1;
}
else if(p2Score == maxScore) {
cout << "Player 2 Wins!" << endl;
winner = 2;
}
}
void update(int value) {
keyboard();
if(winner == 0) {
updateBall();
glutTimerFunc(interval, update, 0);
glutPostRedisplay();
gameOverCheck();
}
}
int _tmain(int argc, char** argv) {
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH);
glutInitWindowSize(500, 200);
glutCreateWindow("Pong");
glutDisplayFunc(draw);
glutTimerFunc(interval, update, 0);
enable2D(width, height);
glColor3f(1.0f, 0.0f, 0.0f);
glutMainLoop();
return 0;
}
同样,如果有人能帮我弄清楚如何为游戏窗口添加背景,那就太棒了:)
最佳答案
关于c++ - 将图像添加到 Pong 游戏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27034126/
我使用 Xcode 和 swift 5 构建了一个应用程序。 每次我点击“简单”、“中等”、“困难”或“2 人”按钮时,我都会收到错误消息: Could not cast value of type
所以我和我的搭档正在尝试制作一个玩家对电脑的乒乓球游戏,但我们就是不知道如何让电脑输。 我们已经完成了基本的工作,它运行良好,但计算机永远不会丢失。我们还尝试使用 sleep 来减慢计算机的速度,但是
我应该如何设计“适当的” OO Pong? 正确的想法是可以更改任何元素:球,球场和 Racket 的形状,增加了障碍,甚至是“助力”,例如“可以将球粘在 Racket 上”。 目前,还有两个紧迫的问
我正在尝试用 Java 制作 Pong 游戏,但在球从 Racket 上弹起时遇到了一些问题。 我有两个桨:左桨1,右桨2。 我的想法如下:ball_Y应该在 Racket 的高度之间,ball_X触
我对 Java 还很陌生,需要一些帮助。我已经创建了 Pong 游戏(使用 Eclipse),并且在大多数情况下,它运行得很好。然而,碰撞检测有些不对劲。球从人类控制的 Racket 上反弹得很好,但
我正在打乒乓球,我已经将球的 x 坐标设置为在它碰到 Racket 时立即反转,并在它没有击中 Racket 时停止。此代码在“大部分”时间都有效,但“有时”球会在没有明显原因的情况下一击中 Rack
我正在创建一个 JS Pong 游戏,但 Pong 游戏中的球在几秒钟后开始滞后。我尝试停止动画帧,优化代码以获得更好的性能并重写球的代码,但没有任何效果。有人可以帮我吗? HTML(无 CSS)
我很困惑为什么我的记分板没有在屏幕上更新。分数正在增加(我用调试器检查过,球也正在居中)。但记分牌根本不更新,它不断显示“0:0” 乒乓球类 package com.dheraxysgames.pon
最近我编写了一个pygame 'Pong',我还没有完成它,因为桨还不能移动。 但是,我在这里遇到了一个问题。因为我想要得到的分数等于球击中 window 边缘的次数。对于我的程序,当球撞到墙壁时,得
嗨,我写了这个简单的碰撞检测和弹跳算法,但是碰撞检测到 y 就好像它是 x 轴一样 bool Ball::DetectCollision(Paddle p) { if(GetPosition().y
我正在用 Python 制作经典的 Pong,但我需要帮助。 对于/在这个游戏中,我想计算球的轨迹,因此对于给定的开始点(在左桨上弹跳)和角度(绿色物体),我想计算终点(蓝色 X)。这一切都是为了将
我有一个 UIImageView,其中加载了一个 png 图像序列。 我的问题是 - 你知道有什么方法可以“乒乓”动画序列吗?这样就从 1-24 向前播放,然后从 24-1 向后播放并循环。 (技术上
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a software
我正在用java制作乒乓球,但敌人的AI没有动。它应该向球移动的方向移动。请问有人可以帮助我吗? 主类: import javax.swing.*; public class Main extends
我正在用java制作一个乒乓球类型的游戏,我试图让球从墙上弹开,但每当球撞到球时,它就会停止,它不会从墙上反射出来,我看不到找出原因。 处理球运动的球类 public class Ball { pri
我正在为我的 Pong 克隆编写一些困难,我写这些是为了熟悉 SFML 和 Xcode。对于最难的难度,我想创建一个人工智能关卡,让计算机立即知道球会去哪里。所以,如果我有 xVelocity 和 y
我是 HTML 5 + Canvas 游戏开发新手。试图在我的 Pong 游戏中为球制作动画。这是我的 code .相关片段: 增加球的速度: Ball.prototype.update = func
好吧,我为此搜索了很多,但我能找到的只是人们说的像 pi * direction,方向是我假设的球进入的角度。但我的问题是,我不知道我是如何得到球进入的角度的,所以我做不到这些。如果有人可以解释我将如
试图在 java 中制作乒乓球但不能同时移动两个 Racket 。您可以移动其中一个,但不能同时移动两者。我是否需要创建具有 2 个不同面板的 2 个线程? 这里是我指定关键事件的地方 public
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
我是一名优秀的程序员,十分优秀!