22 Commits

Author SHA1 Message Date
Konstantin Koch
17d0771b03 Placed the importers into different categories for the "importing existing files" dialog in Visual Studio.
Fixed a performance problem in the Visual Studio extension where no importer or processor was selected for an asset.
Fixed that the asset names for Uri encoded in the build output.
Fixed that errors when serializing assets get logged.
Sped up ImporterManager.GuessImporterByFileExtension, which caused performance problems if many assemblies are loaded into the current AppDomain.
Made the AssimpImporter library deploy the binary files again (hopefully just a temporary solution until we've found a better way.)
Provide a extension for TargetPlatform enum for getting the DisplayName of an entry.
Changed that ProcessorManager.GetProcessorDisplayName doesn't throw an exception if no processor with the given name exists, which now mimicks the same behavior as in importerManager.GetImporterDisplayName.
2015-04-26 19:47:26 +02:00
Konstantin Koch
8287c54432 Included the Visual Studio extension and made the necessary changes to make it run.
Replaced the old VS templates with ones that offer more flexiblity.
Started replacing the Content Project for the samples with our custom project type.
Inlcuded a basic not yet working AssimpImporter.
2015-04-08 14:50:03 +02:00
Konstantin Koch
cb01231e7d implemented Intermediate.Serializer namespace in Content Pipeline.
removed the old .tfignore file.
2015-03-29 18:16:03 +02:00
Glatzemann
a5f4931578 fixed issue #1082 (SpriteFont UTF8 issue) 2015-03-15 01:12:10 +01:00
SND\eagleeyestudios_cp
a56e950056 Content Pipeline:
Fixed SpriteFont Building (Importer/Processor). It now renders fine in the TextRendering Sample.
2015-03-15 01:12:05 +01:00
Glatzemann
99216ca254 - Fixed some bugs in build system
- Build system optimizations
- Extended ProjectConverter: DX and SharpDX assemblies are now removed from linux projects to prevent errors
- Fixed a bunch of compiler warnings
- Removed DX11MetroShaderGenerator assembly. It is now included in ANX.Framework.Content.Pipeline
- Removed HLSLParser assembly. It is now included in ANX.Framework.Content.Pipeline.
- Removed shader parser from GL3-RenderSystem. It is now included in ANX.Framework.Content.Pipeline.
- Removed RenderSystem dependencies from StockShaderCodeGenerator (sscg) tool
2015-03-15 01:12:04 +01:00
Glatzemann
2eb7923339 - fixed reading of SpriteFont's (DefaultCharacter handling was wrong)
- fixed handling of DefaultCharacter in FontDescriptionImporter (no handling)
- set DefaultCharacter in SampleContent's Debug font
2015-03-15 01:12:02 +01:00
SND\eagleeyestudios_cp
c316436f32 Content Pipeline:
- Fixed a Bug in FontDescriptionImporter
- Removed Debugger.Break() in XmlImporter
2015-03-15 01:12:01 +01:00
SND\eagleeyestudios_cp
3c5e98b783 Content Pipeline:
- Implemented important features of the FontDescriptionImporter. Importer works now, but still needs some (optional) features
- Fixed some bugs in the FontDescriptionProcessor. Building now works to the point where the ContentCompiler wants a generic writer instance
2015-03-15 01:11:57 +01:00
SND\eagleeyestudios_cp
d7bd5b7018 Content Pipeline:
- Corrected private setter in FontDescription. If the importer can not set that value, its pretty useless.
- Implemented more of the FontDescriptionImporter. Can not progress further, because it seems there is no manged solution of getting a font's characters
- added missing copyright texts and regions FontDescriptionImporter.cs and FontDescriptionProcessor.cs
2015-03-15 01:11:54 +01:00
SND\eagleeyestudios_cp
72ee0fd837 Content Pipeline:
- implemented FontDescriptionProcessor
- began implementing FontDescriptionImporter
2015-03-15 01:11:52 +01:00
SND\eagleeyestudios_cp
e011a8fc1f - Added some more types to the XmlImporter conversion list. 2015-03-15 01:11:25 +01:00
SND\eagleeyestudios_cp
3a5b123c49 Content Pipeline:
- XmlImporter is now nearly complete. Just conversion stuff for objects besides Single is missing
2015-03-15 01:11:25 +01:00
SND\eagleeyestudios_cp
2561e89e2e - Updated XmlImporter to use LinqToXml, code is much cleaner now. Still supports only strings 2015-03-15 01:11:25 +01:00
SND\eagleeyestudios_cp
939ec9e719 Content Pipeline:
- XmlImporter is now able to import simple xml files without lists or dictionary and stuff, but its not stable yet
2015-03-15 01:11:24 +01:00
SND\eagleeyestudios_cp
a07d5c69b6 Content Compiler:
- Fixed Exception when Importer not set in loaded project.
2015-03-15 01:11:16 +01:00
SND\eagleeyestudios_cp
fa180a58b8 Content Pipeline:
- started implementing XmlImporter
2015-03-15 01:11:14 +01:00
Glatzemann
4c4b999b9c - default ContentProcessor for ContentImporter now working
- some improvements in TextureImporter
- some improvements in SpriteTextureProcessor

Missing for basic texture handling: Texture2DContentWriter
2015-03-15 01:11:12 +01:00
Glatzemann
933ef7cae6 - extended ContentPipeline ProcessorManager with method to select a default processor for a importer or imported type
- extended ContentImporter to provide OutputType of imported content
- provided a list of available ContentProcessors in current context

PlatformSystems are no longer AddIns. This doesn't mean, that you can't load them dynamically. The handling is just different. There's only a single PlatformSystem available for each platform ANX runs on. This one is auto loaded. If it doesn't exist the game doesn't run. The reason for this is, that we will move the AddIn system from ANX.Framework to the specialized PlatformSystem. This is necessary because we want ANX.Framework to become platform independent. The AddIn system is different for some platforms (Android, iOS, Windows 8 Metro) and needs to be specialized. On the other hand we are able to simplify the AddIn system when moving it to the PlatformSystem because we don't need a big AddIn system supporting all platforms with much conditional compiling.

THIS COMMIT DOES BREAK SOME FUNCTIONALITY. METRO DOESN'T WORK ANYMORE, AS IT IS NOT TESTED. DON'T USE THIS COMMIT IF YOU ARE NO ANX.FRAMEWORK DEVELOPER. We will catch up soon with a tested and working version.
2015-03-15 01:10:54 +01:00
SND\AstrorEnales_cp
67c9efa6cf - Moved the Wave loading/conversion to an extra project (WaveUtils)
- Started implementation of the Wave Content Pipeline
- Fixed GraphicsDeviceWindowsGL3
2012-08-29 18:07:54 +00:00
Glatzemann
7eb3e5241e - prepared ContentPipeline to load EffectFiles for the different TargetProfile's. Currently HLSL_FX is working fine and GLSL_FX is prepared (needs testing).
- ContentPipeline effects now have a EffectSourceLanguage parameter
2012-08-27 18:42:54 +00:00
Glatzemann
64ac2da9dd Started to implement texture part of the ContentPipeline. 2012-08-27 09:12:20 +00:00