Well this won't affect speed much but it removed duplicate code and increases readability.
UPDATE: my is expensive.
Move it out of (important) tight loops.
my($key, $d);
while(1) {
#Does this really need to be called each round?
#(no dox), if so move into until
$event->pump();
until ($event->poll != 0) { select(undef,undef,undef, 0.01); } #micr
+osleep
$key = $event->key_sym();
$d = 0;
$d = 1 if $event->type == SDL_KEYDOWN;
$xplus = $d if $key eq SDLK_RIGHT;
$xminus = $d if $key eq SDLK_LEFT;
$yminus = $d if $key eq SDLK_UP;
$yplus = $d if $key eq SDLK_DOWN;
$fire = $d if $key eq SDLK_SPACE;
exit if $key eq SDLK_ESCAPE;
}
--
perl -pew "s/\b;([mnst])/'$1/g"
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.