Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Usar byte para representar o objeto keypress a ser enviado #13

Open
atilacamurca opened this issue Jan 30, 2017 · 0 comments
Open

Usar byte para representar o objeto keypress a ser enviado #13

atilacamurca opened this issue Jan 30, 2017 · 0 comments
Assignees

Comments

@atilacamurca
Copy link
Contributor

Atualmente um objeto contendo true ou false é convertido em JSON e enviado para o servidor representando as teclas que o usuário deseja habilitar.

Mudar para uma variável inteira em que cada bit representa uma tecla, já que ou está habilitada ou não.
Como são 8 teclas cabe perfeitamente em 1 byte.

O que era assim:

{
   Y: false,
   X: false,
   B: false,
   A: false,
   left: false,
   right: false,
   up: false,
   down: false
}

se torna:

00000000

Para isso utilizar operadores binários para a manipulação.

Referências

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant