- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 C++ 的初学者,我正在尝试做一条蛇,但我遇到了一个问题。
错误行:
C:\Users\Kcper\Desktop\Snej w allegro\main.cpp||In function 'void display_game()':|
C:\Users\Kcper\Desktop\Snej w allegro\main.cpp|58|warning: left operand of comma operator has no effect [-Wunused-value]|
C:\Users\Kcper\Desktop\Snej w allegro\main.cpp|58|error: conversion from 'int' to non-scalar type 'const Vec2' requested|
这是一个代码:
#include <allegro.h>
#include <winalleg.h>
#define TICS_PER_SECOND 50
#define MAX_FRAMESKIP 10
#define MAX_MENU_STATES 4
const int SKIP_TICKS = 1000 / TICS_PER_SECOND;
BITMAP * buffer;
struct Vec2
{
int x;
int y;
};
enum States
{
state_menu,
state_game,
state_continue,
state_exit,
state_leaderboard,
};
enum Positions
{
pos_game=30,
pos_continue=50,
pos_exit=70,
pos_leaderboard=90,
};
States menu(int *state)
{
int value;
if (keypressed())
{
value=readkey();
switch(value>>8)
{
case KEY_DOWN:
if(*state<MAX_MENU_STATES)(*state)++;
break;
case KEY_UP:
if(*state>1)(*state)--;
break;
case KEY_ENTER:
return States(*state);
}
}
return state_menu;
}
void display_game()
{
int color_zielony=makecol(0,255,0);
int color_czerwony=makecol(255,0,0);
const Vec2 ARENA_POSITION=(0,50); //<---- There is a problem
rect(buffer,ARENA_POSITION.x,ARENA_POSITION.y,SCREEN_H-1,SCREEN_W-1,color_czerwony);
textout_centre_ex(buffer,font,"Carrotz: ",SCREEN_W/2,SCREEN_H/2,color_zielony,0);
}
void display_menu(States state)
{
int color_bialy=makecol(255,255,255);
int color_czerwony=makecol(255,0,0);
int color_niebieski=makecol(0,0,255);
int color_zielony=makecol(0,255,0);
textout_centre_ex(buffer,font,"SNAKE by Kacper",SCREEN_W/2,10,color_niebieski,0);
textout_centre_ex(buffer,font,"New Game",SCREEN_W/2,30,color_bialy,2);
textout_centre_ex(buffer,font,"Leadrboard",SCREEN_W/2,70,color_bialy,2);
textout_centre_ex(buffer,font,"Continue",SCREEN_W/2,50,color_bialy,2);
textout_centre_ex(buffer,font,"Exit",SCREEN_W/2,90,color_czerwony,2);
int position;
switch(state)
{
case state_game:
position=pos_game;
break;
case state_continue:
position=pos_continue;
break;
case state_leaderboard:
position=pos_leaderboard;
break;
case state_exit:
position=pos_exit;
break;
}
rectfill(buffer,SCREEN_W/2-100,position,SCREEN_H-180,position+10,color_zielony);
}
inline void init()
{
allegro_init();
set_color_depth(32);
set_gfx_mode(GFX_AUTODETECT_WINDOWED,760,480,0,0);
install_timer();
install_keyboard();
install_mouse();
}
inline void deinit()
{
destroy_bitmap(buffer);
clear_keybuf();
allegro_exit();
}
int main()
{
init();
States currentState=state_menu;
int currentMenuState=1;
int next_game_tick = GetTickCount();
int loops;
float interpolation;
buffer=create_bitmap (SCREEN_W,SCREEN_H);
while (!key[KEY_ESC])
{
loops=0;
while (GetTickCount()>next_game_tick&&loops<MAX_FRAMESKIP)
{
loops++;
next_game_tick+=SKIP_TICKS;
switch (currentState)
{
case state_menu:
currentState=menu(¤tMenuState);
break;
case state_game:
break;
}
}
clear(buffer);
switch (currentState)
{
case state_menu:
display_menu(States(currentMenuState));
break;
case state_game:
display_game();
break;
}
blit(buffer,screen,0,0,0,0,SCREEN_W,SCREEN_H);
}
deinit();
return 0;
}
END_OF_MAIN()
那么我该如何解决这个问题呢?
最佳答案
const Vec2 ARENA_POSITION = (0, 50);
不是 aggregate initialization 的语法.这是一个带括号的 comma operator ,它丢弃 0
(关于逗号运算符的操作数没有任何效果的警告)并尝试做
const Vec2 ARENA_POSITION = 50;
正确的语法是以下两者之一:
const Vec2 ARENA_POSITION = {0, 50};
const Vec2 ARENA_POSITION{0, 50};
关于c++ - 请求从 'int' 到非标量类型 conts 'Vec2' 的转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35767242/
Cont r a type 代表一个需要延续的函数 a->r并产生 r 类型的结果。所以延续和整个 Cont r a产生相同类型的结果 r 。 我的问题是:两个结果是否必须相同值,或者可以是 Cont
嘿,我正在尝试查询在连续列中具有最大值的单词。例如:如果单词“test1”在 cont 中的值为 5,而“test2”的值为 2,则“test1”将显示在第一个位置。明白了吗? 所以。我正在尝试这样做
想起我之前在此列表中加入了一个字段,用于方便提示管理员公司的产品列表是否有修改之类的状态字段,于是可以断定是加了此字段的原因。 首先,先看看我之前是如何写这个提示状态字段的,实体中加入
我在玩Cont描述的单子(monad)技巧here在 this SO question . 这个函数让你“跳回”到计算的早期,接受一个参数,这样你就可以做不同的事情: import Control.M
我在玩 CPS 和 Control.Monad.Cont并想知道我们通过注意一元结构获得了什么。对于这样的代码: sumOfSquares'cps :: Cont r Int -> Cont r In
我正在为 this question 提供答案我想到了使用 Cont monad 的想法。我对 Haskell 的了解不足以解释为什么这个程序不起作用 import Control.Monad.Con
我有一个任务:写一个函数evalCPS它评估由下面的 ADT 形式化的表达式,使用继续传递样式但没有 Cont Monad 或类似的东西。 data Expr a = Expr a :+: Expr
这就是 Cont monad 的定义方式: newtype Cont r a = Cont { runCont :: (a -> r) -> r } instance Monad (Cont r) w
我正在为 this question 提供答案我想到了使用 Cont monad 的想法。我对 Haskell 的了解不足以解释为什么这个程序不起作用 import Control.Monad.Con
我正在看一个带有 python-ptrace 的游戏。我不想与服务器断开连接,因此在附加到进程后,我立即调用 cont() 以允许它继续运行。 在这种状态下我仍然可以读取内存,但无法写入。 是否有办法
我在 Standard ML (SMLofNJ.Cont) 中阅读有关continuations的内容。我了解 callcc 和 throw 的作用,但无法理解 isolate 。文档说 Discar
我真的很难理解 callCC。我得到了延续的力量,我一直在我的一些项目中使用这个概念来创造很酷的概念。但是我从来不需要使用比 cont :: ((a->r)->r)-> Cont r a 更强大的东西
我正在尝试 Cont monad,并发现了以下问题。 首先构造一个无限列表并将所有元素提升到 Cont monad 使用序列操作在无限列表上获取 Cont monad。 例如,当我们尝试使用 head
我正在阅读this implementation Haskell 中的 Continuation,感觉比较棘手,很多时候,r 并不是那么重要,所以我们提供了reset,方便被替换。 所以我认为Cont
我正在用 Haskell 编写一个该死的解释器,我想出了一个我认为非常有趣的程序描述: data Program m = Instruction (m ()) (Program m)
我开始阅读The Mother of All Monads ,并输入这个例子: import Control.Monad.Cont ex1 = do a :l ContMonad.hs [1 o
我最近正在查看此页面: https://en.wikipedia.org/wiki/C_syntax#Iteration_statements有这样的代码片段: e1; while (e2) {
我最近正在学习 Herb Sutter 的“Exceptional C++”,我对他在第 6 项 - 临时对象中给出的特定建议深表怀疑。 他提出在以下代码中查找不必要的临时对象: string Fin
我遇到了一个问题。我们有一个干净的脚本用来清理旧文件,有时我们需要停止它,稍后再启动它。像下面的过程。我们在check.sh中使用kill -STOP $pid和kill -CONT $pid来控制c
我最近正在阅读 Herb Sutter 的“Exceptional C++”,我对他在第 6 项 - 临时对象中给出的特定建议表示严重怀疑。 他提出在以下代码中查找不必要的临时对象: string F
我是一名优秀的程序员,十分优秀!