├── .gitignore ├── COPYING.txt ├── LEEME.txt ├── Makefile ├── README.txt └── src ├── Abreviaturas.cpp ├── Aventura.cpp ├── Caracteres.cpp ├── Condacto.cpp ├── Conexiones.cpp ├── Defaults.cpp ├── EntradaProcesos.cpp ├── Excepcion.cpp ├── Fichero.cpp ├── Graficos.cpp ├── ListaEntradasVolcadas.cpp ├── ListaProcesos.cpp ├── ListaSimple.cpp ├── PawCondacts.cpp ├── PawPart.cpp ├── Proceso.cpp ├── SpBuffer.cpp ├── Textos.cpp ├── Tokeniser.cpp ├── UtilTexto.cpp ├── Vocabulario.cpp ├── include ├── Abreviaturas.h ├── Aventura.h ├── Caracteres.h ├── Condacto.h ├── Conexiones.h ├── Defaults.h ├── EntradaProcesos.h ├── Excepcion.h ├── Fichero.h ├── Graficos.h ├── ListaEntradasVolcadas.h ├── ListaProcesos.h ├── ListaSimple.h ├── ListaSimpleImpl.h ├── MsgAplicacion.h ├── PawCondacts.h ├── PawPart.h ├── Proceso.h ├── SpBuffer.h ├── Textos.h ├── Tokeniser.h ├── UtilTexto.h ├── Vocabulario.h ├── defines.h └── prep │ ├── Diccionario.h │ ├── Error.h │ ├── MsgPrep.h │ ├── Pool.h │ ├── PrepAbreviable.h │ ├── PrepAbreviaturas.h │ ├── PrepConstantes.h │ ├── PrepDefaults.h │ ├── PrepEntradaMultiple.h │ ├── PrepFlags.h │ ├── PrepListaDatos.h │ ├── PrepListaMensajes.h │ ├── PrepLocalidades.h │ ├── PrepObjetos.h │ ├── PrepPart.h │ ├── PrepProcesos.h │ ├── PrepSubChar.h │ ├── PrepTokeniser.h │ ├── PrepUtilTexto.h │ ├── PrepVocabulario.h │ └── Preprocesador.h ├── main.cpp └── prep ├── Diccionario.cpp ├── Error.cpp ├── Pool.cpp ├── PrepAbreviable.cpp ├── PrepAbreviaturas.cpp ├── PrepConstantes.cpp ├── PrepDefaults.cpp ├── PrepEntradaMultiple.cpp ├── PrepFlags.cpp ├── PrepListaDatos.cpp ├── PrepListaMensajes.cpp ├── PrepLocalidades.cpp ├── PrepObjetos.cpp ├── PrepPart.cpp ├── PrepProcesos.cpp ├── PrepSubChar.cpp ├── PrepTokeniser.cpp ├── PrepUtilTexto.cpp ├── PrepVocabulario.cpp └── Preprocesador.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | src/**/*.o 2 | inpaws 3 | .vscode/ -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/COPYING.txt -------------------------------------------------------------------------------- /LEEME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/LEEME.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/Makefile -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/README.txt -------------------------------------------------------------------------------- /src/Abreviaturas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/Abreviaturas.cpp -------------------------------------------------------------------------------- /src/Aventura.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/Aventura.cpp -------------------------------------------------------------------------------- /src/Caracteres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/Caracteres.cpp -------------------------------------------------------------------------------- /src/Condacto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/Condacto.cpp -------------------------------------------------------------------------------- /src/Conexiones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/Conexiones.cpp -------------------------------------------------------------------------------- /src/Defaults.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/Defaults.cpp -------------------------------------------------------------------------------- /src/EntradaProcesos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/EntradaProcesos.cpp -------------------------------------------------------------------------------- /src/Excepcion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/Excepcion.cpp -------------------------------------------------------------------------------- /src/Fichero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/Fichero.cpp -------------------------------------------------------------------------------- /src/Graficos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/Graficos.cpp -------------------------------------------------------------------------------- /src/ListaEntradasVolcadas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/ListaEntradasVolcadas.cpp -------------------------------------------------------------------------------- /src/ListaProcesos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/ListaProcesos.cpp -------------------------------------------------------------------------------- /src/ListaSimple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/ListaSimple.cpp -------------------------------------------------------------------------------- /src/PawCondacts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/PawCondacts.cpp -------------------------------------------------------------------------------- /src/PawPart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/PawPart.cpp -------------------------------------------------------------------------------- /src/Proceso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/Proceso.cpp -------------------------------------------------------------------------------- /src/SpBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/SpBuffer.cpp -------------------------------------------------------------------------------- /src/Textos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/Textos.cpp -------------------------------------------------------------------------------- /src/Tokeniser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/Tokeniser.cpp -------------------------------------------------------------------------------- /src/UtilTexto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/UtilTexto.cpp -------------------------------------------------------------------------------- /src/Vocabulario.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/Vocabulario.cpp -------------------------------------------------------------------------------- /src/include/Abreviaturas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/Abreviaturas.h -------------------------------------------------------------------------------- /src/include/Aventura.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/Aventura.h -------------------------------------------------------------------------------- /src/include/Caracteres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/Caracteres.h -------------------------------------------------------------------------------- /src/include/Condacto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/Condacto.h -------------------------------------------------------------------------------- /src/include/Conexiones.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/Conexiones.h -------------------------------------------------------------------------------- /src/include/Defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/Defaults.h -------------------------------------------------------------------------------- /src/include/EntradaProcesos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/EntradaProcesos.h -------------------------------------------------------------------------------- /src/include/Excepcion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/Excepcion.h -------------------------------------------------------------------------------- /src/include/Fichero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/Fichero.h -------------------------------------------------------------------------------- /src/include/Graficos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/Graficos.h -------------------------------------------------------------------------------- /src/include/ListaEntradasVolcadas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/ListaEntradasVolcadas.h -------------------------------------------------------------------------------- /src/include/ListaProcesos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/ListaProcesos.h -------------------------------------------------------------------------------- /src/include/ListaSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/ListaSimple.h -------------------------------------------------------------------------------- /src/include/ListaSimpleImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/ListaSimpleImpl.h -------------------------------------------------------------------------------- /src/include/MsgAplicacion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/MsgAplicacion.h -------------------------------------------------------------------------------- /src/include/PawCondacts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/PawCondacts.h -------------------------------------------------------------------------------- /src/include/PawPart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/PawPart.h -------------------------------------------------------------------------------- /src/include/Proceso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/Proceso.h -------------------------------------------------------------------------------- /src/include/SpBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/SpBuffer.h -------------------------------------------------------------------------------- /src/include/Textos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/Textos.h -------------------------------------------------------------------------------- /src/include/Tokeniser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/Tokeniser.h -------------------------------------------------------------------------------- /src/include/UtilTexto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/UtilTexto.h -------------------------------------------------------------------------------- /src/include/Vocabulario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/Vocabulario.h -------------------------------------------------------------------------------- /src/include/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/defines.h -------------------------------------------------------------------------------- /src/include/prep/Diccionario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/Diccionario.h -------------------------------------------------------------------------------- /src/include/prep/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/Error.h -------------------------------------------------------------------------------- /src/include/prep/MsgPrep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/MsgPrep.h -------------------------------------------------------------------------------- /src/include/prep/Pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/Pool.h -------------------------------------------------------------------------------- /src/include/prep/PrepAbreviable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/PrepAbreviable.h -------------------------------------------------------------------------------- /src/include/prep/PrepAbreviaturas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/PrepAbreviaturas.h -------------------------------------------------------------------------------- /src/include/prep/PrepConstantes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/PrepConstantes.h -------------------------------------------------------------------------------- /src/include/prep/PrepDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/PrepDefaults.h -------------------------------------------------------------------------------- /src/include/prep/PrepEntradaMultiple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/PrepEntradaMultiple.h -------------------------------------------------------------------------------- /src/include/prep/PrepFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/PrepFlags.h -------------------------------------------------------------------------------- /src/include/prep/PrepListaDatos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/PrepListaDatos.h -------------------------------------------------------------------------------- /src/include/prep/PrepListaMensajes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/PrepListaMensajes.h -------------------------------------------------------------------------------- /src/include/prep/PrepLocalidades.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/PrepLocalidades.h -------------------------------------------------------------------------------- /src/include/prep/PrepObjetos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/PrepObjetos.h -------------------------------------------------------------------------------- /src/include/prep/PrepPart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/PrepPart.h -------------------------------------------------------------------------------- /src/include/prep/PrepProcesos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/PrepProcesos.h -------------------------------------------------------------------------------- /src/include/prep/PrepSubChar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/PrepSubChar.h -------------------------------------------------------------------------------- /src/include/prep/PrepTokeniser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/PrepTokeniser.h -------------------------------------------------------------------------------- /src/include/prep/PrepUtilTexto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/PrepUtilTexto.h -------------------------------------------------------------------------------- /src/include/prep/PrepVocabulario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/PrepVocabulario.h -------------------------------------------------------------------------------- /src/include/prep/Preprocesador.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/include/prep/Preprocesador.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/prep/Diccionario.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/Diccionario.cpp -------------------------------------------------------------------------------- /src/prep/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/Error.cpp -------------------------------------------------------------------------------- /src/prep/Pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/Pool.cpp -------------------------------------------------------------------------------- /src/prep/PrepAbreviable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/PrepAbreviable.cpp -------------------------------------------------------------------------------- /src/prep/PrepAbreviaturas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/PrepAbreviaturas.cpp -------------------------------------------------------------------------------- /src/prep/PrepConstantes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/PrepConstantes.cpp -------------------------------------------------------------------------------- /src/prep/PrepDefaults.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/PrepDefaults.cpp -------------------------------------------------------------------------------- /src/prep/PrepEntradaMultiple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/PrepEntradaMultiple.cpp -------------------------------------------------------------------------------- /src/prep/PrepFlags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/PrepFlags.cpp -------------------------------------------------------------------------------- /src/prep/PrepListaDatos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/PrepListaDatos.cpp -------------------------------------------------------------------------------- /src/prep/PrepListaMensajes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/PrepListaMensajes.cpp -------------------------------------------------------------------------------- /src/prep/PrepLocalidades.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/PrepLocalidades.cpp -------------------------------------------------------------------------------- /src/prep/PrepObjetos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/PrepObjetos.cpp -------------------------------------------------------------------------------- /src/prep/PrepPart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/PrepPart.cpp -------------------------------------------------------------------------------- /src/prep/PrepProcesos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/PrepProcesos.cpp -------------------------------------------------------------------------------- /src/prep/PrepSubChar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/PrepSubChar.cpp -------------------------------------------------------------------------------- /src/prep/PrepTokeniser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/PrepTokeniser.cpp -------------------------------------------------------------------------------- /src/prep/PrepUtilTexto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/PrepUtilTexto.cpp -------------------------------------------------------------------------------- /src/prep/PrepVocabulario.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/PrepVocabulario.cpp -------------------------------------------------------------------------------- /src/prep/Preprocesador.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mastodon-/inpaws/HEAD/src/prep/Preprocesador.cpp --------------------------------------------------------------------------------