-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Añadido el archivo de configuración de flags de compilación de N'gine. Esto permite compilar la librería desconectando ciertas funcionalidades o usando otras alternativas si se ha de desarrollar para plataformas con GPU's de bajo rendimiento o dispositivos portátiles o en sistemas donde no se dispone de las últimas versiones de las librerías usadas por N'gine. Entre otros, es posible desconectar el uso del backbuffer (perdiendo ciertas opciones de filtrado bilineal) o desconectar las funciones avanzadas de audio de SFML, disponibles solo en las últimas versiones de la misma. - Actualizada la versión de LodePNG. - Añadidos los operadores += y -= a la clase Vector2 y sus derivadas. - Añadidos los operadores *= y /= a la clase Vector2 y sus derivadas. - Reescritura parcial de todas las herramientas para N'gine, para una mejor detección de los parámetros y una apariencia más homogénea. - Reescritura parcial de todas las clases internas de N'gine, convirtiéndolas en singletons al fin de evitar conflictos por algún descuido. La clase NGN_Camera no se ha convertido, dado que en algún proyecto puede ser necesario disponer de más de una instancia de esta clase. - N'gine, los templates y los ejemplos se han configurado para seguir la norma C++ 17 (estándar). - Actualizados los ejemplos de sonido.
- Loading branch information
1 parent
a8b57da
commit b4dcd9e
Showing
320 changed files
with
10,021 additions
and
3,701 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,11 @@ | |
Archivo de Demo (Programa) | ||
Proyecto iniciado el 1 de Febrero del 2016 | ||
(cc) 2016 - 2022 by Cesar Rincon "NightFox" | ||
(cc) 2016 - 2023 by Cesar Rincon "NightFox" | ||
https://nightfoxandco.com | ||
[email protected] | ||
Requiere N'gine 1.9.0-stable o superior | ||
Requiere N'gine 1.11.0-stable o superior | ||
Requiere GCC 11.3.0 MinGW64 (SEH) - 64-bits | ||
https://www.mingw-w64.org/ | ||
|
@@ -19,8 +19,8 @@ | |
Requiere SFML (2.5.1) - 64-bits | ||
http://www.sfml-dev.org/ | ||
Requiere LodePNG (20200306) | ||
(c) 2005 - 2020 by Lode Vandevenne | ||
Requiere LodePNG (20220717) | ||
(c) 2005 - 2022 by Lode Vandevenne | ||
http://lodev.org/lodepng/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,11 @@ | |
Archivo de Demo (Declaraciones) | ||
Proyecto iniciado el 1 de Febrero del 2016 | ||
(cc) 2016 - 2022 by Cesar Rincon "NightFox" | ||
(cc) 2016 - 2023 by Cesar Rincon "NightFox" | ||
https://nightfoxandco.com | ||
[email protected] | ||
Requiere N'gine 1.9.0-stable o superior | ||
Requiere N'gine 1.11.0-stable o superior | ||
Requiere GCC 11.3.0 MinGW64 (SEH) - 64-bits | ||
https://www.mingw-w64.org/ | ||
|
@@ -19,8 +19,8 @@ | |
Requiere SFML (2.5.1) - 64-bits | ||
http://www.sfml-dev.org/ | ||
Requiere LodePNG (20200306) | ||
(c) 2005 - 2020 by Lode Vandevenne | ||
Requiere LodePNG (20220717) | ||
(c) 2005 - 2022 by Lode Vandevenne | ||
http://lodev.org/lodepng/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,11 @@ | |
Ejemplo de carga de texturas en formato PNG | ||
Proyecto iniciado el 1 de Febrero del 2016 | ||
(cc) 2016 - 2022 by Cesar Rincon "NightFox" | ||
(cc) 2016 - 2023 by Cesar Rincon "NightFox" | ||
https://nightfoxandco.com | ||
[email protected] | ||
Requiere N'gine 1.9.0-stable o superior | ||
Requiere N'gine 1.11.0-stable o superior | ||
Requiere GCC 11.3.0 MinGW64 (SEH) - 64-bits | ||
https://www.mingw-w64.org/ | ||
|
@@ -18,8 +18,8 @@ | |
Requiere SFML (2.5.1) - 64-bits | ||
http://www.sfml-dev.org/ | ||
Requiere LodePNG (20200306) | ||
(c) 2005 - 2020 by Lode Vandevenne | ||
Requiere LodePNG (20220717) | ||
(c) 2005 - 2022 by Lode Vandevenne | ||
http://lodev.org/lodepng/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,11 @@ | |
Archivo de Demo (Programa) | ||
Proyecto iniciado el 1 de Febrero del 2016 | ||
(cc) 2016 - 2022 by Cesar Rincon "NightFox" | ||
(cc) 2016 - 2023 by Cesar Rincon "NightFox" | ||
https://nightfoxandco.com | ||
[email protected] | ||
Requiere N'gine 1.9.0-stable o superior | ||
Requiere N'gine 1.11.0-stable o superior | ||
Requiere GCC 11.3.0 MinGW64 (SEH) - 64-bits | ||
https://www.mingw-w64.org/ | ||
|
@@ -19,8 +19,8 @@ | |
Requiere SFML (2.5.1) - 64-bits | ||
http://www.sfml-dev.org/ | ||
Requiere LodePNG (20200306) | ||
(c) 2005 - 2020 by Lode Vandevenne | ||
Requiere LodePNG (20220717) | ||
(c) 2005 - 2022 by Lode Vandevenne | ||
http://lodev.org/lodepng/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,11 @@ | |
Archivo de Demo (Declaraciones) | ||
Proyecto iniciado el 1 de Febrero del 2016 | ||
(cc) 2016 - 2022 by Cesar Rincon "NightFox" | ||
(cc) 2016 - 2023 by Cesar Rincon "NightFox" | ||
https://nightfoxandco.com | ||
[email protected] | ||
Requiere N'gine 1.9.0-stable o superior | ||
Requiere N'gine 1.11.0-stable o superior | ||
Requiere GCC 11.3.0 MinGW64 (SEH) - 64-bits | ||
https://www.mingw-w64.org/ | ||
|
@@ -19,8 +19,8 @@ | |
Requiere SFML (2.5.1) - 64-bits | ||
http://www.sfml-dev.org/ | ||
Requiere LodePNG (20200306) | ||
(c) 2005 - 2020 by Lode Vandevenne | ||
Requiere LodePNG (20220717) | ||
(c) 2005 - 2022 by Lode Vandevenne | ||
http://lodev.org/lodepng/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,11 @@ | |
Ejemplo de carga y movimiento de texturas | ||
Proyecto iniciado el 1 de Febrero del 2016 | ||
(cc) 2016 - 2022 by Cesar Rincon "NightFox" | ||
(cc) 2016 - 2023 by Cesar Rincon "NightFox" | ||
https://nightfoxandco.com | ||
[email protected] | ||
Requiere N'gine 1.9.0-stable o superior | ||
Requiere N'gine 1.11.0-stable o superior | ||
Requiere GCC 11.3.0 MinGW64 (SEH) - 64-bits | ||
https://www.mingw-w64.org/ | ||
|
@@ -18,8 +18,8 @@ | |
Requiere SFML (2.5.1) - 64-bits | ||
http://www.sfml-dev.org/ | ||
Requiere LodePNG (20200306) | ||
(c) 2005 - 2020 by Lode Vandevenne | ||
Requiere LodePNG (20220717) | ||
(c) 2005 - 2022 by Lode Vandevenne | ||
http://lodev.org/lodepng/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,11 @@ | |
Archivo de Demo (Programa) | ||
Proyecto iniciado el 1 de Febrero del 2016 | ||
(cc) 2016 - 2022 by Cesar Rincon "NightFox" | ||
(cc) 2016 - 2023 by Cesar Rincon "NightFox" | ||
https://nightfoxandco.com | ||
[email protected] | ||
Requiere N'gine 1.9.0-stable o superior | ||
Requiere N'gine 1.11.0-stable o superior | ||
Requiere GCC 11.3.0 MinGW64 (SEH) - 64-bits | ||
https://www.mingw-w64.org/ | ||
|
@@ -19,8 +19,8 @@ | |
Requiere SFML (2.5.1) - 64-bits | ||
http://www.sfml-dev.org/ | ||
Requiere LodePNG (20200306) | ||
(c) 2005 - 2020 by Lode Vandevenne | ||
Requiere LodePNG (20220717) | ||
(c) 2005 - 2022 by Lode Vandevenne | ||
http://lodev.org/lodepng/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,11 @@ | |
Archivo de Demo (Declaraciones) | ||
Proyecto iniciado el 1 de Febrero del 2016 | ||
(cc) 2016 - 2022 by Cesar Rincon "NightFox" | ||
(cc) 2016 - 2023 by Cesar Rincon "NightFox" | ||
https://nightfoxandco.com | ||
[email protected] | ||
Requiere N'gine 1.9.0-stable o superior | ||
Requiere N'gine 1.11.0-stable o superior | ||
Requiere GCC 11.3.0 MinGW64 (SEH) - 64-bits | ||
https://www.mingw-w64.org/ | ||
|
@@ -19,8 +19,8 @@ | |
Requiere SFML (2.5.1) - 64-bits | ||
http://www.sfml-dev.org/ | ||
Requiere LodePNG (20200306) | ||
(c) 2005 - 2020 by Lode Vandevenne | ||
Requiere LodePNG (20220717) | ||
(c) 2005 - 2022 by Lode Vandevenne | ||
http://lodev.org/lodepng/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,11 @@ | |
Ejemplo de carga y scroll de fondos con tiles | ||
Proyecto iniciado el 1 de Febrero del 2016 | ||
(cc) 2016 - 2022 by Cesar Rincon "NightFox" | ||
(cc) 2016 - 2023 by Cesar Rincon "NightFox" | ||
https://nightfoxandco.com | ||
[email protected] | ||
Requiere N'gine 1.9.0-stable o superior | ||
Requiere N'gine 1.11.0-stable o superior | ||
Requiere GCC 11.3.0 MinGW64 (SEH) - 64-bits | ||
https://www.mingw-w64.org/ | ||
|
@@ -18,8 +18,8 @@ | |
Requiere SFML (2.5.1) - 64-bits | ||
http://www.sfml-dev.org/ | ||
Requiere LodePNG (20200306) | ||
(c) 2005 - 2020 by Lode Vandevenne | ||
Requiere LodePNG (20220717) | ||
(c) 2005 - 2022 by Lode Vandevenne | ||
http://lodev.org/lodepng/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,11 @@ | |
Archivo de Demo (Programa) | ||
Proyecto iniciado el 1 de Febrero del 2016 | ||
(cc) 2016 - 2022 by Cesar Rincon "NightFox" | ||
(cc) 2016 - 2023 by Cesar Rincon "NightFox" | ||
https://nightfoxandco.com | ||
[email protected] | ||
Requiere N'gine 1.9.0-stable o superior | ||
Requiere N'gine 1.11.0-stable o superior | ||
Requiere GCC 11.3.0 MinGW64 (SEH) - 64-bits | ||
https://www.mingw-w64.org/ | ||
|
@@ -19,8 +19,8 @@ | |
Requiere SFML (2.5.1) - 64-bits | ||
http://www.sfml-dev.org/ | ||
Requiere LodePNG (20200306) | ||
(c) 2005 - 2020 by Lode Vandevenne | ||
Requiere LodePNG (20220717) | ||
(c) 2005 - 2022 by Lode Vandevenne | ||
http://lodev.org/lodepng/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,11 @@ | |
Archivo de Demo (Declaraciones) | ||
Proyecto iniciado el 1 de Febrero del 2016 | ||
(cc) 2016 - 2022 by Cesar Rincon "NightFox" | ||
(cc) 2016 - 2023 by Cesar Rincon "NightFox" | ||
https://nightfoxandco.com | ||
[email protected] | ||
Requiere N'gine 1.9.0-stable o superior | ||
Requiere N'gine 1.11.0-stable o superior | ||
Requiere GCC 11.3.0 MinGW64 (SEH) - 64-bits | ||
https://www.mingw-w64.org/ | ||
|
@@ -19,8 +19,8 @@ | |
Requiere SFML (2.5.1) - 64-bits | ||
http://www.sfml-dev.org/ | ||
Requiere LodePNG (20200306) | ||
(c) 2005 - 2020 by Lode Vandevenne | ||
Requiere LodePNG (20220717) | ||
(c) 2005 - 2022 by Lode Vandevenne | ||
http://lodev.org/lodepng/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,11 @@ | |
Ejemplo del uso de Sprites | ||
Proyecto iniciado el 1 de Febrero del 2016 | ||
(cc) 2016 - 2022 by Cesar Rincon "NightFox" | ||
(cc) 2016 - 2023 by Cesar Rincon "NightFox" | ||
https://nightfoxandco.com | ||
[email protected] | ||
Requiere N'gine 1.9.0-stable o superior | ||
Requiere N'gine 1.11.0-stable o superior | ||
Requiere GCC 11.3.0 MinGW64 (SEH) - 64-bits | ||
https://www.mingw-w64.org/ | ||
|
@@ -18,8 +18,8 @@ | |
Requiere SFML (2.5.1) - 64-bits | ||
http://www.sfml-dev.org/ | ||
Requiere LodePNG (20200306) | ||
(c) 2005 - 2020 by Lode Vandevenne | ||
Requiere LodePNG (20220717) | ||
(c) 2005 - 2022 by Lode Vandevenne | ||
http://lodev.org/lodepng/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.