Beta 4 kickoff

[lang_en]

In this last weekend, work on beta 4 has been started with great success. The new colision detector and movement handler are almost completed, and work much better than in beta3, and the code is cleaner and better too, I dare to say that there is only one bug that is very hard to reproduce.

Also, we started testing sound, it works pertectly in Linux, but will need some work on Playstation 2 because our current implementation of key/joystick reading (we are not using threads at this point of development) makes the music glitch, probally we need something to read input less often or put it on a thread.

Another thing was that we finally fixed a but that made the game goes freeze. It was just that using short int for a timer is not a great idea, and after passing the 32k, the number goes negative and our timer testing, just were not released.

So, here is the list of planned features for beta 4:

  • Fix beta 3 bugs:
  • a) projectiles are clearning the screen in the wrong position (above) – DONE
  • b) sometimes the game freezes (animation still run, but player do not move) – DONE (CheckDelay)
  • c) colision detection have a bug that allows player to “walk in the air” (1) – DONE
  • d) player can fall to the left side of screen (1) – DONE
  • (1)revise whole collision detection – INWORK
  • try to hack SDL to disable bilinear filter (not possible currently) – CANCELLED
  • fix SDL_Timer (see http://forums.ps2dev.org/viewtopic.php?t=2842&highlight=clock+tick) – DONE
  • (2)fix SDL_mixer (see http://forums.ps2dev.org/viewtopic.php?t=9798&highlight=sdlmixer)
  • commit SDL changes to ps2dev.org
  • music (2) – DONE
  • sound effects (2)
  • editor: allow user to set p1 and p2 starting position (must be in same screen area – MAX_W and MAX_H of distance)
  • editor: allow user to add boss door
  • editor: add npc support (including a wizard to define it’s frames)
  • editor: add line tool
  • editor: add stairs (use locked 2)
  • editor: allow second level of tiles (this will allow user to create transparent tiles, for stairs, etc)
  • better “loading”: make it generic and allows two types:
  • a) scroll messages up when new one reaches bottom of screen (for debug)
  • b) loading with a progress bar and showing only the last message)
  • add loading for all elements, including intro screen and such
  • load NPCs from the game/map file
  • NPC movement types (wait, attack, loop, left to right and right to left)
  • NPC can only execute acions that are defined in the frameset list (if do not have jump frame, can’t jump)
  • NPC must return when killed and out of players vision
  • create transitions between two differente stages (like a boss door, or a staircase)
  • if the whole screen height have a wall (locked) ahead, do not scroll beyond it, hidding the contents after it (this will allow us to use more regions in the map)
  • make win32 version run from anywhere
  • must find a way to determine the jump size by the time of button pressed
  • create a new animation system, that have individual frames with duration [add_frame(posx, duration)]
  • redesign whole game intro (use in-game like graphics)
  • create graphics of players in several angles to improve graphics ideas
  • add some animation using color cycle in intro by switching palettes
  • working staircases
  • indicate when a player is blocking the scrolling (using a P1/P2 above it’s head)
  • add boss (Apebot)
  • make the screen rendering in real time, use a small part out of the screen to render when necessary instead of rendering the whole thing at onde
  • (create function render line and render column) – memory should go from 226x63x256=3.600kB to 22x15x256 = 84kB (main app still uses ~1.5MB)
  • compile the game for Nintendo DS (no real build yet, just start testing)

[/lang_en]

[lang_pt-br]

No último fim de semana, o trabalho na versão beta 4 começou com grande sucesso. O noivo sistema de colisão e gerenciador de movimentos estão quase completos, e funcionam muito melhor do que no beta 3, além do código ser mais limpo e melhor. Eu ouso dizer que existe apenas um pequeno bug, bem difícil de reproduzir.

Também começamos a testar o som, ele funciona perfeitamente em Linux, mas vai precisar de algum esforço para o Playstation 2, porque nossa implementação atual de leitura de teclado e joystick faz a música ficar cortada, provavelmente vamos precisar ler menos frequentemente o dispositivo de entrada ou colocar a leitura em uma thread (não estamos as usando neste momento do desenvolvimento).

Outra coisa que fizemos foi corrigir um bug que fazia o jogo congelar. A causa foi que, usar uma variável do tipo short int para tempo não é uma grande idéia, já que ao passar de 32 mil,  a variável fica negativa, e o nosso contador de tmepo ficava simplesmente preso.

Então, para finalizar, aqui está a lista de tarefas para o beta 4:

  • Corrigir bugs do beta 3:
  • a) projéteis estão limpando a tela na posição errada (acima) – FEITO
  • b) algumas vezes o jogo trava (a animação continua, mas o jogador não se move) – FEITO (CheckDelay)
  • c) a verificaçãod e colisão tem um bug que permite andar no ar  (1) – FEITO
  • d) o jogador pode cair para o lado esquerdo da tela (1) – FEITO
  • (1) revisar toda a verificação de colisão – INWORK
  • tentar desabilitar o filtro biliniear na SDL (não é possível atualmente) – CANCELADO
  • corrigir a SDL_Timer (see http://forums.ps2dev.org/viewtopic.php?t=2842&highlight=clock+tick) – FEITO
  • (2) corrigir a SDL_mixer (see http://forums.ps2dev.org/viewtopic.php?t=9798&highlight=sdlmixer)
  • enviar modificações na SDL para o ps2dev.org
  • música (2) – FEITO
  • efeitos sonoros (2)
  • editor: allow user to set p1 and p2 starting position (must be in same screen area – MAX_W and MAX_H of distance)
  • editor: allow user to add boss door
  • editor: add npc support (including a wizard to define it’s frames)
  • editor: add line tool
  • editor: add stairs (use locked 2)
  • editor: allow second level of tiles (this will allow user to create transparent tiles, for stairs, etc)
  • better “loading”: make it generic and allows two types:
  • a) scroll messages up when new one reaches bottom of screen (for debug)
  • b) loading with a progress bar and showing only the last message)
  • add loading for all elements, including intro screen and such
  • load NPCs from the game/map file
  • NPC movement types (wait, attack, loop, left to right and right to left)
  • NPC can only execute acions that are defined in the frameset list (if do not have jump frame, can’t jump)
  • NPC must return when killed and out of players vision
  • create transitions between two differente stages (like a boss door, or a staircase)
  • if the whole screen height have a wall (locked) ahead, do not scroll beyond it, hidding the contents after it (this will allow us to use more regions in the map)
  • make win32 version run from anywhere
  • must find a way to determine the jump size by the time of button pressed
  • create a new animation system, that have individual frames with duration [add_frame(posx, duration)]
  • redesign whole game intro (use in-game like graphics)
  • create graphics of players in several angles to improve graphics ideas
  • add some animation using color cycle in intro by switching palettes
  • working staircases
  • indicate when a player is blocking the scrolling (using a P1/P2 above it’s head)
  • add boss (Apebot)
  • make the screen rendering in real time, use a small part out of the screen to render when necessary instead of rendering the whole thing at onde
  • (create function render line and render column) – memory should go from 226x63x256=3.600kB to 22x15x256 = 84kB (main app still uses ~1.5MB)
  • compile the game for Nintendo DS (no real build yet, just start testing)

[/lang_pt-br]

    Leave a Reply

    This site uses Akismet to reduce spam. Learn how your comment data is processed.