diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox.sln --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sandbox.sln Mon Jul 23 22:15:13 2012 -0500 @@ -0,0 +1,24 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "sandbox", "sandbox\sandbox\sandbox.csproj", "{8E7BEA44-E8A6-412C-8547-3B338A02B26C}" +EndProject +Project("{96E2B04D-8817-42C6-938A-82C39BA4D311}") = "sandboxContent", "sandbox\sandboxContent\sandboxContent.contentproj", "{D69E458D-4561-4AEA-94F2-7ABEC93D82F4}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x86 = Debug|x86 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8E7BEA44-E8A6-412C-8547-3B338A02B26C}.Debug|x86.ActiveCfg = Debug|x86 + {8E7BEA44-E8A6-412C-8547-3B338A02B26C}.Debug|x86.Build.0 = Debug|x86 + {8E7BEA44-E8A6-412C-8547-3B338A02B26C}.Release|x86.ActiveCfg = Release|x86 + {8E7BEA44-E8A6-412C-8547-3B338A02B26C}.Release|x86.Build.0 = Release|x86 + {D69E458D-4561-4AEA-94F2-7ABEC93D82F4}.Debug|x86.ActiveCfg = Debug|x86 + {D69E458D-4561-4AEA-94F2-7ABEC93D82F4}.Release|x86.ActiveCfg = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandbox/Axios.WP7.dll Binary file sandbox/sandbox/Axios.WP7.dll has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandbox/Axios.Windows.dll Binary file sandbox/sandbox/Axios.Windows.dll has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandbox/Axios.Xbox360.dll Binary file sandbox/sandbox/Axios.Xbox360.dll has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandbox/Program.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sandbox/sandbox/Program.cs Mon Jul 23 22:15:13 2012 -0500 @@ -0,0 +1,21 @@ +using System; + +namespace sandbox +{ +#if WINDOWS || XBOX + static class Program + { + /// + /// The main entry point for the application. + /// + static void Main(string[] args) + { + using (Game1 game = new Game1()) + { + game.Run(); + } + } + } +#endif +} + diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandbox/Properties/AssemblyInfo.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sandbox/sandbox/Properties/AssemblyInfo.cs Mon Jul 23 22:15:13 2012 -0500 @@ -0,0 +1,34 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("sandbox")] +[assembly: AssemblyProduct("sandbox")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyCopyright("Copyright © 2012")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. Only Windows +// assemblies support COM. +[assembly: ComVisible(false)] + +// On Windows, the following GUID is for the ID of the typelib if this +// project is exposed to COM. On other platforms, it unique identifies the +// title storage container when deploying this assembly to the device. +[assembly: Guid("bcb5b5e5-ce8f-4bb0-aaa0-ca7a65f7c606")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +[assembly: AssemblyVersion("1.0.0.0")] \ No newline at end of file diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandbox/Screens/Texture2DFactTest.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sandbox/sandbox/Screens/Texture2DFactTest.cs Mon Jul 23 22:15:13 2012 -0500 @@ -0,0 +1,41 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using Axios.Engine; +using Microsoft.Xna.Framework.Graphics; +using Axios.Engine.Factories; +using Microsoft.Xna.Framework; + +namespace sandbox.Screens +{ + class Texture2DFactTest : AxiosGameScreen + { + private Texture2D town_tile; + private Texture2D drawme; + public override void Activate(bool instancePreserved) + { + base.Activate(instancePreserved); + + town_tile = ScreenManager.Game.Content.Load("Texture2DFactTest/town_tiles_1-4"); + List list_of_tiles = new List(); + for (int i = 0; i < 10; i++) + { + list_of_tiles.Add(town_tile); + } + + drawme = Texture2DFactory.CreateFromList(list_of_tiles, 80, 80); + } + + public override void Draw(GameTime gameTime) + { + base.Draw(gameTime); + ScreenManager.SpriteBatch.Begin(0, null, null, null, null, null, Camera.View); + ScreenManager.SpriteBatch.Draw(drawme, Vector2.Zero, + null, + Color.White, 0, Vector2.Zero, 1f, + SpriteEffects.None, 0f); + ScreenManager.SpriteBatch.End(); + } + } +} diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandbox/sandbox.csproj --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sandbox/sandbox/sandbox.csproj Mon Jul 23 22:15:13 2012 -0500 @@ -0,0 +1,133 @@ + + + + {8E7BEA44-E8A6-412C-8547-3B338A02B26C} + {6D335F3A-9D43-41b4-9D22-F6F17C4BE596};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + Debug + x86 + WinExe + Properties + sandbox + sandbox + v4.0 + Client + v4.0 + Windows + Reach + 667e6d7a-1b8e-42b4-9de4-5055b2a10863 + Game + Game.ico + GameThumbnail.png + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + false + true + + + true + full + false + bin\x86\Debug + DEBUG;TRACE;WINDOWS + prompt + 4 + true + false + x86 + false + + + pdbonly + true + bin\x86\Release + TRACE;WINDOWS + prompt + 4 + true + false + x86 + true + + + + .\Axios.Windows.dll + + + + + + + + + + + + + + + + + + + + + + + true + + + + + sandboxContent + Content + + + + + False + Microsoft .NET Framework 4 Client Profile %28x86 and x64%29 + true + + + False + .NET Framework 3.5 SP1 Client Profile + false + + + False + .NET Framework 3.5 SP1 + false + + + False + Windows Installer 3.1 + true + + + False + Microsoft XNA Framework Redistributable 4.0 + true + + + + + + \ No newline at end of file diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandbox/sandbox.csproj.user --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sandbox/sandbox/sandbox.csproj.user Mon Jul 23 22:15:13 2012 -0500 @@ -0,0 +1,13 @@ + + + + + + + + + + en-US + false + + \ No newline at end of file diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Common/Thumbs.db Binary file sandbox/sandboxContent/Common/Thumbs.db has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Common/arrow.png Binary file sandbox/sandboxContent/Common/arrow.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Common/buttons.png Binary file sandbox/sandboxContent/Common/buttons.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Common/cursor.png Binary file sandbox/sandboxContent/Common/cursor.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Common/gradient.png Binary file sandbox/sandboxContent/Common/gradient.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Common/logo.png Binary file sandbox/sandboxContent/Common/logo.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Common/popup.png Binary file sandbox/sandboxContent/Common/popup.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Common/slider.png Binary file sandbox/sandboxContent/Common/slider.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Common/socket.png Binary file sandbox/sandboxContent/Common/socket.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Common/stick.png Binary file sandbox/sandboxContent/Common/stick.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Console.spritefont --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sandbox/sandboxContent/Console.spritefont Mon Jul 23 22:15:13 2012 -0500 @@ -0,0 +1,60 @@ + + + + + + + Segoe UI Mono + + + 14 + + + 0 + + + true + + + + + + + + + + + + ~ + + + + diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Fonts/credits.spritefont --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sandbox/sandboxContent/Fonts/credits.spritefont Mon Jul 23 22:15:13 2012 -0500 @@ -0,0 +1,60 @@ + + + + + + + Calibri + + + 15 + + + 0 + + + true + + + + + + + + + + + + ~ + + + + diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Fonts/detailsFont.spritefont --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sandbox/sandboxContent/Fonts/detailsFont.spritefont Mon Jul 23 22:15:13 2012 -0500 @@ -0,0 +1,15 @@ + + + + Courier New + 10 + 1 + + + + + ~ + + + + \ No newline at end of file diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Fonts/frameRateCounterFont.spritefont --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sandbox/sandboxContent/Fonts/frameRateCounterFont.spritefont Mon Jul 23 22:15:13 2012 -0500 @@ -0,0 +1,47 @@ + + + + Arial + 10 + 2 + + + + f + f + + + p + p + + + t + t + + + n + n + + + s + s + + + : + : + + + + + + + 0 + 9 + + + . + . + + + + \ No newline at end of file diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Fonts/helptext.spritefont --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sandbox/sandboxContent/Fonts/helptext.spritefont Mon Jul 23 22:15:13 2012 -0500 @@ -0,0 +1,60 @@ + + + + + + + Segoe UI Mono + + + 8 + + + 0 + + + true + + + + + + + + + + + + ~ + + + + diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Fonts/menufont.spritefont --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sandbox/sandboxContent/Fonts/menufont.spritefont Mon Jul 23 22:15:13 2012 -0500 @@ -0,0 +1,15 @@ + + + + Segoe UI Mono + 23 + 2 + + + + + ~ + + + + \ No newline at end of file diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Materials/blank.png Binary file sandbox/sandboxContent/Materials/blank.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Materials/dots.png Binary file sandbox/sandboxContent/Materials/dots.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Materials/pavement.png Binary file sandbox/sandboxContent/Materials/pavement.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Materials/squares.png Binary file sandbox/sandboxContent/Materials/squares.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Materials/waves.png Binary file sandbox/sandboxContent/Materials/waves.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Samples/alphabet.png Binary file sandbox/sandboxContent/Samples/alphabet.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Samples/car.png Binary file sandbox/sandboxContent/Samples/car.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Samples/goo.png Binary file sandbox/sandboxContent/Samples/goo.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Samples/link.png Binary file sandbox/sandboxContent/Samples/link.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Samples/object.png Binary file sandbox/sandboxContent/Samples/object.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Samples/wheel.png Binary file sandbox/sandboxContent/Samples/wheel.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/Texture2DFactTest/town_tiles_1-4.png Binary file sandbox/sandboxContent/Texture2DFactTest/town_tiles_1-4.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/background.png Binary file sandbox/sandboxContent/background.png has changed diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/font.spritefont --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sandbox/sandboxContent/font.spritefont Mon Jul 23 22:15:13 2012 -0500 @@ -0,0 +1,60 @@ + + + + + + + Arial + + + 10 + + + 0 + + + true + + + + + + + + + + + + ~ + + + + diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/sandboxContent.contentproj --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sandbox/sandboxContent/sandboxContent.contentproj Mon Jul 23 22:15:13 2012 -0500 @@ -0,0 +1,196 @@ + + + + {D69E458D-4561-4AEA-94F2-7ABEC93D82F4} + {96E2B04D-8817-42c6-938A-82C39BA4D311};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + Debug + x86 + Library + Properties + v4.0 + v4.0 + bin\$(Platform)\$(Configuration) + Content + + + x86 + + + x86 + + + sandboxContent + + + + + + + + + + + + background + TextureImporter + TextureProcessor + + + arrow + TextureImporter + TextureProcessor + + + buttons + TextureImporter + TextureProcessor + + + cursor + TextureImporter + TextureProcessor + + + gradient + TextureImporter + TextureProcessor + + + logo + TextureImporter + TextureProcessor + + + popup + TextureImporter + TextureProcessor + + + slider + TextureImporter + TextureProcessor + + + socket + TextureImporter + TextureProcessor + + + stick + TextureImporter + TextureProcessor + + + blank + TextureImporter + TextureProcessor + + + dots + TextureImporter + TextureProcessor + + + pavement + TextureImporter + TextureProcessor + + + squares + TextureImporter + TextureProcessor + + + waves + TextureImporter + TextureProcessor + + + alphabet + TextureImporter + TextureProcessor + + + car + TextureImporter + TextureProcessor + + + goo + TextureImporter + TextureProcessor + + + link + TextureImporter + TextureProcessor + + + object + TextureImporter + TextureProcessor + + + wheel + TextureImporter + TextureProcessor + + + + + Console + FontDescriptionImporter + FontDescriptionProcessor + + + font + FontDescriptionImporter + FontDescriptionProcessor + + + credits + FontDescriptionImporter + FontDescriptionProcessor + + + detailsFont + FontDescriptionImporter + FontDescriptionProcessor + + + frameRateCounterFont + FontDescriptionImporter + FontDescriptionProcessor + + + helptext + FontDescriptionImporter + FontDescriptionProcessor + + + menufont + FontDescriptionImporter + FontDescriptionProcessor + + + scorefont + FontDescriptionImporter + FontDescriptionProcessor + + + + + town_tiles_1-4 + TextureImporter + TextureProcessor + + + + + \ No newline at end of file diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/sandboxContent.contentproj.user --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sandbox/sandboxContent/sandboxContent.contentproj.user Mon Jul 23 22:15:13 2012 -0500 @@ -0,0 +1,6 @@ + + + + ShowAllFiles + + \ No newline at end of file diff -r 0000000000000000000000000000000000000000 -r 582ddc97e15166df66d64d866d3cfd593bd70ffb sandbox/sandboxContent/scorefont.spritefont --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sandbox/sandboxContent/scorefont.spritefont Mon Jul 23 22:15:13 2012 -0500 @@ -0,0 +1,60 @@ + + + + + + + Segoe UI Mono + + + 8 + + + 0 + + + true + + + + + + + + + + + + ~ + + + +