Backup all my work thus far.
This commit is contained in:
parent
f188c12f0a
commit
e545d4232d
|
@ -283,8 +283,14 @@ namespace ShaderExample
|
|||
}
|
||||
|
||||
}
|
||||
try
|
||||
{
|
||||
Game1.activeClickableMenu.upperRightCloseButton.draw(Game1.spriteBatch);
|
||||
}
|
||||
catch(Exception err)
|
||||
{
|
||||
|
||||
Game1.activeClickableMenu.upperRightCloseButton.draw(Game1.spriteBatch);
|
||||
}
|
||||
Game1.activeClickableMenu.drawMouse(Game1.spriteBatch);
|
||||
Game1.spriteBatch.End();
|
||||
}
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -9,3 +9,4 @@ C:\Users\iD Student\Desktop\Stardew\ShaderExample\ShaderExample\bin\Debug\Conten
|
|||
C:\Users\iD Student\Desktop\Stardew\ShaderExample\ShaderExample\bin\Debug\Netcode.dll
|
||||
C:\Users\iD Student\Desktop\Stardew\ShaderExample\ShaderExample\bin\Debug\Netcode.pdb
|
||||
C:\Users\iD Student\Desktop\Stardew\ShaderExample\ShaderExample\obj\Debug\ShaderExample.csproj.CopyComplete
|
||||
C:\Users\iD Student\Desktop\Stardew\ShaderExample\ShaderExample\obj\Debug\ShaderExample.csprojResolveAssemblyReference.cache
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -138,6 +138,7 @@ namespace Vocalization.Framework
|
|||
dataFileNames.Add("EngagementDialogue.xnb");
|
||||
|
||||
stringsFileNames.Add("StringsFromCSFiles.xnb");
|
||||
stringsFileNames.Add(name + ".xnb");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@ using System.IO;
|
|||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.Xna.Framework.Graphics;
|
||||
using StardewModdingAPI;
|
||||
using StardewValley;
|
||||
using StardewValley.Menus;
|
||||
|
@ -70,6 +71,9 @@ namespace Vocalization
|
|||
*
|
||||
* Utility
|
||||
* -Strings/StringsFromCS.yaml
|
||||
*
|
||||
* Quests
|
||||
* -Strings/Quests
|
||||
*/
|
||||
|
||||
/// <summary>
|
||||
|
@ -123,10 +127,23 @@ namespace Vocalization
|
|||
/// -NPC.cs
|
||||
/// -Utility.cs
|
||||
///
|
||||
/// !!!!!!!!!Make moddable to support other languages, portuguese, russian, etc (Needs testing)
|
||||
/// Make moddable to support other languages, portuguese, russian, etc (Needs testing)
|
||||
/// -make mod config have a list of supported languages and a variable that is the currently selected language.
|
||||
///
|
||||
/// Remove text typing sound from game? (done) Just turn off the option for Game1.options.dialogueTyping.
|
||||
///
|
||||
/// Add support for adding dialogue lines when loading CharacterVoiceCue.json if the line doesn't already exist! (done)
|
||||
///
|
||||
///
|
||||
///
|
||||
/// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
/// -Quests (done)
|
||||
/// -NPC Gift tastes
|
||||
/// speach bubbles
|
||||
/// -temp
|
||||
/// -ui
|
||||
/// ///
|
||||
///
|
||||
/// </summary>
|
||||
public class Vocalization : Mod
|
||||
{
|
||||
|
@ -143,6 +160,8 @@ namespace Vocalization
|
|||
/// </summary>
|
||||
public static SimpleSoundManager.Framework.SoundManager soundManager;
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// The path to the folder where all of the NPC folders for dialogue .wav files are kept.
|
||||
/// </summary>
|
||||
|
@ -164,7 +183,9 @@ namespace Vocalization
|
|||
StardewModdingAPI.Events.GameEvents.UpdateTick += GameEvents_UpdateTick;
|
||||
StardewModdingAPI.Events.MenuEvents.MenuClosed += MenuEvents_MenuClosed;
|
||||
|
||||
ModMonitor = Monitor;
|
||||
Effect eff;
|
||||
eff.pa
|
||||
ModMonitor = Monitor;
|
||||
ModHelper = Helper;
|
||||
DialogueCues = new Dictionary<string, CharacterVoiceCue>();
|
||||
replacementStrings = new ReplacementStrings();
|
||||
|
@ -380,11 +401,6 @@ namespace Vocalization
|
|||
string voicePath = Path.Combine(audioPath, "VoiceFiles");
|
||||
|
||||
|
||||
List<string> translationFolders = new List<string>();
|
||||
|
||||
//TODO: Add more translations.
|
||||
translationFolders.Add(Path.Combine(voicePath, "English"));
|
||||
|
||||
VoicePath = voicePath; //Set a static reference to my voice files directory.
|
||||
|
||||
List<string> characterDialoguePaths = new List<string>();
|
||||
|
@ -394,7 +410,7 @@ namespace Vocalization
|
|||
{
|
||||
foreach(var NPC in loc.characters)
|
||||
{
|
||||
foreach (var translation in translationFolders)
|
||||
foreach (var translation in config.translations)
|
||||
{
|
||||
string characterPath = Path.Combine(translation, NPC.Name);
|
||||
characterDialoguePaths.Add(characterPath);
|
||||
|
@ -403,64 +419,64 @@ namespace Vocalization
|
|||
}
|
||||
|
||||
//Add in folder for TV Shows
|
||||
foreach (var translation in translationFolders)
|
||||
foreach (var translation in config.translations)
|
||||
{
|
||||
string TVPath = Path.Combine(translation, "TV");
|
||||
characterDialoguePaths.Add(TVPath);
|
||||
}
|
||||
|
||||
//Add in folder for shop support
|
||||
foreach (var translation in translationFolders)
|
||||
foreach (var translation in config.translations)
|
||||
{
|
||||
string shop = Path.Combine(translation, "Shops"); //Used to hold NPC Shops
|
||||
characterDialoguePaths.Add(shop);
|
||||
}
|
||||
|
||||
//Add in folder for Mail support.
|
||||
foreach (var translation in translationFolders)
|
||||
foreach (var translation in config.translations)
|
||||
{
|
||||
string mail = Path.Combine(translation, "Mail");
|
||||
characterDialoguePaths.Add(mail);
|
||||
}
|
||||
|
||||
//Add in folder for ExtraDiaogue.yaml
|
||||
foreach (var translation in translationFolders)
|
||||
foreach (var translation in config.translations)
|
||||
{
|
||||
string extra = Path.Combine(translation, "ExtraDialogue");
|
||||
characterDialoguePaths.Add(extra);
|
||||
}
|
||||
|
||||
foreach (var translation in translationFolders)
|
||||
foreach (var translation in config.translations)
|
||||
{
|
||||
string extra = Path.Combine(translation, "Events");
|
||||
characterDialoguePaths.Add(extra);
|
||||
}
|
||||
|
||||
foreach (var translation in translationFolders)
|
||||
foreach (var translation in config.translations)
|
||||
{
|
||||
string extra = Path.Combine(translation, "Characters");
|
||||
characterDialoguePaths.Add(extra);
|
||||
}
|
||||
|
||||
foreach (var translation in translationFolders)
|
||||
foreach (var translation in config.translations)
|
||||
{
|
||||
string extra = Path.Combine(translation, "LocationDialogue");
|
||||
characterDialoguePaths.Add(extra);
|
||||
}
|
||||
|
||||
foreach (var translation in translationFolders)
|
||||
foreach (var translation in config.translations)
|
||||
{
|
||||
string extra = Path.Combine(translation, "Notes");
|
||||
characterDialoguePaths.Add(extra);
|
||||
}
|
||||
|
||||
foreach (var translation in translationFolders)
|
||||
foreach (var translation in config.translations)
|
||||
{
|
||||
string extra = Path.Combine(translation, "Utility");
|
||||
characterDialoguePaths.Add(extra);
|
||||
}
|
||||
|
||||
foreach (var translation in translationFolders)
|
||||
foreach (var translation in config.translations)
|
||||
{
|
||||
string kent = Path.Combine(translation, "Kent");
|
||||
characterDialoguePaths.Add(kent);
|
||||
|
@ -483,13 +499,20 @@ namespace Vocalization
|
|||
}
|
||||
|
||||
|
||||
|
||||
foreach (var translation in config.translations)
|
||||
{
|
||||
string extra = Path.Combine(translation, "Quests");
|
||||
characterDialoguePaths.Add(extra);
|
||||
}
|
||||
|
||||
if (!Directory.Exists(contentPath)) Directory.CreateDirectory(contentPath);
|
||||
if (!Directory.Exists(audioPath)) Directory.CreateDirectory(audioPath);
|
||||
if (!Directory.Exists(voicePath)) Directory.CreateDirectory(voicePath);
|
||||
|
||||
|
||||
//Create all of the necessary folders for different translations.
|
||||
foreach(var dir in translationFolders)
|
||||
foreach(var dir in config.translations)
|
||||
{
|
||||
if (!Directory.Exists(dir)) Directory.CreateDirectory(dir);
|
||||
}
|
||||
|
@ -997,6 +1020,55 @@ namespace Vocalization
|
|||
|
||||
}
|
||||
|
||||
else if (cue.name == "Quests")
|
||||
{
|
||||
foreach (var fileName in cue.stringsFileNames)
|
||||
{
|
||||
ModMonitor.Log(" Scraping dialogue file: " + fileName, LogLevel.Info);
|
||||
string dialoguePath2 = Path.Combine(stringsPath, fileName);
|
||||
string root = Game1.content.RootDirectory;///////USE THIS TO CHECK FOR EXISTENCE!!!!!
|
||||
if (!File.Exists(Path.Combine(root, dialoguePath2)))
|
||||
{
|
||||
ModMonitor.Log("Dialogue file not found for:" + fileName + ". This might not necessarily be a mistake just a safety check.");
|
||||
continue; //If the file is not found for some reason...
|
||||
}
|
||||
var DialogueDict = ModHelper.Content.Load<Dictionary<string, string>>(dialoguePath2, ContentSource.GameContent);
|
||||
//Scrape the whole dictionary looking for the character's name.
|
||||
foreach (KeyValuePair<string, string> pair in DialogueDict)
|
||||
{
|
||||
//Get the key in the dictionary
|
||||
string key = pair.Key;
|
||||
string rawDialogue = pair.Value;
|
||||
//If the key contains the character's name.
|
||||
|
||||
List<string> strippedRawQuestDialogue = new List<string>();
|
||||
List<string> strippedFreshQuestDialogue = new List<string>();
|
||||
strippedRawQuestDialogue = rawDialogue.Split('/').ToList();
|
||||
string prompt = strippedRawQuestDialogue.ElementAt(2);
|
||||
string response = strippedRawQuestDialogue.ElementAt(strippedRawQuestDialogue.Count - 1);
|
||||
|
||||
strippedFreshQuestDialogue.Add(prompt);
|
||||
if (response != "true" || response != "false")
|
||||
{
|
||||
strippedFreshQuestDialogue.Add(response);
|
||||
}
|
||||
|
||||
List<string> cleanDialogues = new List<string>();
|
||||
foreach (var dia in strippedFreshQuestDialogue)
|
||||
{
|
||||
cleanDialogues = sanitizeDialogueFromDictionaries(rawDialogue);
|
||||
foreach (var str in cleanDialogues)
|
||||
{
|
||||
cue.addDialogue(str, ""); //Make a new dialogue line based off of the text, but have the .wav value as empty.
|
||||
}
|
||||
}
|
||||
}
|
||||
continue;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
//Dialogue scrape for npc specific text.
|
||||
else
|
||||
{
|
||||
|
@ -1179,6 +1251,34 @@ namespace Vocalization
|
|||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
if (fileName.Contains(cue.name))
|
||||
{
|
||||
dialoguePath2 = Path.Combine(stringsPath,"schedules", fileName);
|
||||
root = Game1.content.RootDirectory;///////USE THIS TO CHECK FOR EXISTENCE!!!!!
|
||||
if (!File.Exists(Path.Combine(root, dialoguePath2)))
|
||||
{
|
||||
ModMonitor.Log("Dialogue file not found for:" + fileName + ". This might not necessarily be a mistake just a safety check.");
|
||||
continue; //If the file is not found for some reason...
|
||||
}
|
||||
DialogueDict = ModHelper.Content.Load<Dictionary<string, string>>(dialoguePath2, ContentSource.GameContent);
|
||||
//Scrape the whole dictionary looking for the character's name.
|
||||
foreach (KeyValuePair<string, string> pair in DialogueDict)
|
||||
{
|
||||
//Get the key in the dictionary
|
||||
string key = pair.Key;
|
||||
string rawDialogue = pair.Value;
|
||||
//If the key contains the character's name.
|
||||
List<string> cleanDialogues = new List<string>();
|
||||
cleanDialogues = sanitizeDialogueFromDictionaries(rawDialogue);
|
||||
foreach (var str in cleanDialogues)
|
||||
{
|
||||
cue.addDialogue(str, ""); //Make a new dialogue line based off of the text, but have the .wav value as empty.
|
||||
}
|
||||
|
||||
}
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -8,3 +8,4 @@ C:\Users\iD Student\Desktop\Stardew\Vocalization\Vocalization\bin\Debug\Netcode.
|
|||
C:\Users\iD Student\Desktop\Stardew\Vocalization\Vocalization\obj\Debug\Vocalization.csproj.CopyComplete
|
||||
C:\Users\iD Student\Desktop\Stardew\Vocalization\Vocalization\bin\Debug\SimpleSoundManager.dll
|
||||
C:\Users\iD Student\Desktop\Stardew\Vocalization\Vocalization\bin\Debug\SimpleSoundManager.pdb
|
||||
C:\Users\iD Student\Desktop\Stardew\Vocalization\Vocalization\obj\Debug\Vocalization.csprojResolveAssemblyReference.cache
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,29 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 15
|
||||
VisualStudioVersion = 15.0.27428.2037
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsGame2", "WindowsGame2\WindowsGame2\WindowsGame2.csproj", "{48A8E271-B5CF-4290-8C04-37C352A3F15C}"
|
||||
EndProject
|
||||
Project("{96E2B04D-8817-42C6-938A-82C39BA4D311}") = "WindowsGame2Content", "WindowsGame2\WindowsGame2Content\WindowsGame2Content.contentproj", "{58C274AC-3DD6-4FC1-9E6B-9E2D8D885F08}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|x86 = Debug|x86
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{48A8E271-B5CF-4290-8C04-37C352A3F15C}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{48A8E271-B5CF-4290-8C04-37C352A3F15C}.Debug|x86.Build.0 = Debug|x86
|
||||
{48A8E271-B5CF-4290-8C04-37C352A3F15C}.Release|x86.ActiveCfg = Release|x86
|
||||
{48A8E271-B5CF-4290-8C04-37C352A3F15C}.Release|x86.Build.0 = Release|x86
|
||||
{58C274AC-3DD6-4FC1-9E6B-9E2D8D885F08}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{58C274AC-3DD6-4FC1-9E6B-9E2D8D885F08}.Release|x86.ActiveCfg = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {BF1FC8C0-B716-4D85-BD2B-658B67A6E0A5}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
Binary file not shown.
After Width: | Height: | Size: 4.2 KiB |
|
@ -0,0 +1,91 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Microsoft.Xna.Framework;
|
||||
using Microsoft.Xna.Framework.Audio;
|
||||
using Microsoft.Xna.Framework.Content;
|
||||
using Microsoft.Xna.Framework.GamerServices;
|
||||
using Microsoft.Xna.Framework.Graphics;
|
||||
using Microsoft.Xna.Framework.Input;
|
||||
using Microsoft.Xna.Framework.Media;
|
||||
|
||||
namespace WindowsGame2
|
||||
{
|
||||
/// <summary>
|
||||
/// This is the main type for your game
|
||||
/// </summary>
|
||||
public class Game1 : Microsoft.Xna.Framework.Game
|
||||
{
|
||||
GraphicsDeviceManager graphics;
|
||||
SpriteBatch spriteBatch;
|
||||
|
||||
public Game1()
|
||||
{
|
||||
graphics = new GraphicsDeviceManager(this);
|
||||
Content.RootDirectory = "Content";
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Allows the game to perform any initialization it needs to before starting to run.
|
||||
/// This is where it can query for any required services and load any non-graphic
|
||||
/// related content. Calling base.Initialize will enumerate through any components
|
||||
/// and initialize them as well.
|
||||
/// </summary>
|
||||
protected override void Initialize()
|
||||
{
|
||||
// TODO: Add your initialization logic here
|
||||
|
||||
base.Initialize();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// LoadContent will be called once per game and is the place to load
|
||||
/// all of your content.
|
||||
/// </summary>
|
||||
protected override void LoadContent()
|
||||
{
|
||||
// Create a new SpriteBatch, which can be used to draw textures.
|
||||
spriteBatch = new SpriteBatch(GraphicsDevice);
|
||||
|
||||
// TODO: use this.Content to load your game content here
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// UnloadContent will be called once per game and is the place to unload
|
||||
/// all content.
|
||||
/// </summary>
|
||||
protected override void UnloadContent()
|
||||
{
|
||||
// TODO: Unload any non ContentManager content here
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Allows the game to run logic such as updating the world,
|
||||
/// checking for collisions, gathering input, and playing audio.
|
||||
/// </summary>
|
||||
/// <param name="gameTime">Provides a snapshot of timing values.</param>
|
||||
protected override void Update(GameTime gameTime)
|
||||
{
|
||||
// Allows the game to exit
|
||||
if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed)
|
||||
this.Exit();
|
||||
|
||||
// TODO: Add your update logic here
|
||||
|
||||
base.Update(gameTime);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// This is called when the game should draw itself.
|
||||
/// </summary>
|
||||
/// <param name="gameTime">Provides a snapshot of timing values.</param>
|
||||
protected override void Draw(GameTime gameTime)
|
||||
{
|
||||
GraphicsDevice.Clear(Color.CornflowerBlue);
|
||||
|
||||
// TODO: Add your drawing code here
|
||||
|
||||
base.Draw(gameTime);
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 5.6 KiB |
|
@ -0,0 +1,21 @@
|
|||
using System;
|
||||
|
||||
namespace WindowsGame2
|
||||
{
|
||||
#if WINDOWS || XBOX
|
||||
static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
static void Main(string[] args)
|
||||
{
|
||||
using (Game1 game = new Game1())
|
||||
{
|
||||
game.Run();
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
|
@ -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("WindowsGame2")]
|
||||
[assembly: AssemblyProduct("WindowsGame2")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2018")]
|
||||
[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("48a8e271-b5cf-4290-8c04-37c352a3f15c")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
|
@ -0,0 +1,85 @@
|
|||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ProjectGuid>{48A8E271-B5CF-4290-8C04-37C352A3F15C}</ProjectGuid>
|
||||
<ProjectTypeGuids>{6D335F3A-9D43-41b4-9D22-F6F17C4BE596};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>WindowsGame2</RootNamespace>
|
||||
<AssemblyName>WindowsGame2</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
|
||||
<XnaFrameworkVersion>v4.0</XnaFrameworkVersion>
|
||||
<XnaPlatform>Windows</XnaPlatform>
|
||||
<XnaProfile>Reach</XnaProfile>
|
||||
<XnaCrossPlatformGroupID>6e015d12-6141-4a91-b036-a111000be29c</XnaCrossPlatformGroupID>
|
||||
<XnaOutputType>Game</XnaOutputType>
|
||||
<ApplicationIcon>Game.ico</ApplicationIcon>
|
||||
<Thumbnail>GameThumbnail.png</Thumbnail>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\x86\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;WINDOWS</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoStdLib>true</NoStdLib>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<XnaCompressContent>false</XnaCompressContent>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\x86\Release</OutputPath>
|
||||
<DefineConstants>TRACE;WINDOWS</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoStdLib>true</NoStdLib>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<XnaCompressContent>true</XnaCompressContent>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="Microsoft.Xna.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" />
|
||||
<Reference Include="Microsoft.Xna.Framework.Game, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" />
|
||||
<Reference Include="Microsoft.Xna.Framework.Graphics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" />
|
||||
<Reference Include="Microsoft.Xna.Framework.GamerServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" />
|
||||
<Reference Include="mscorlib" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Net" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Game1.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Game.ico" />
|
||||
<Content Include="GameThumbnail.png">
|
||||
<XnaPlatformSpecific>true</XnaPlatformSpecific>
|
||||
</Content>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\WindowsGame2Content\WindowsGame2Content.contentproj">
|
||||
<Name>WindowsGame2Content</Name>
|
||||
<XnaReferenceType>Content</XnaReferenceType>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\Microsoft.Xna.GameStudio.targets" />
|
||||
<!--
|
||||
To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
|
@ -0,0 +1,2 @@
|
|||
Content\NoEffect.xnb
|
||||
Content\GreyScaleEffect.xnb
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,625 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<members>
|
||||
<member name="T:Microsoft.Xna.Framework.DrawableGameComponent">
|
||||
<summary>A game component that is notified when it needs to draw itself.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.DrawableGameComponent.#ctor(Microsoft.Xna.Framework.Game)">
|
||||
<summary>Creates a new instance of DrawableGameComponent.</summary>
|
||||
<param name="game">The Game that the game component should be attached to.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.DrawableGameComponent.Dispose(System.Boolean)">
|
||||
<summary>Releases the unmanaged resources used by the DrawableGameComponent and optionally releases the managed resources.</summary>
|
||||
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.DrawableGameComponent.Draw(Microsoft.Xna.Framework.GameTime)">
|
||||
<summary>Called when the DrawableGameComponent needs to be drawn. Override this method with component-specific drawing code. Reference page contains links to related conceptual articles.</summary>
|
||||
<param name="gameTime">Time passed since the last call to Draw.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.DrawableGameComponent.DrawOrder">
|
||||
<summary>Order in which the component should be drawn, relative to other components that are in the same GameComponentCollection. Reference page contains code sample.</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.DrawableGameComponent.DrawOrderChanged">
|
||||
<summary>Raised when the DrawOrder property changes.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.DrawableGameComponent.GraphicsDevice">
|
||||
<summary>The GraphicsDevice the DrawableGameComponent is associated with.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.DrawableGameComponent.Initialize">
|
||||
<summary>Initializes the component. Override this method to load any non-graphics resources and query for any required services.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.DrawableGameComponent.LoadContent">
|
||||
<summary>Called when graphics resources need to be loaded. Override this method to load any component-specific graphics resources.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.DrawableGameComponent.OnDrawOrderChanged(System.Object,System.EventArgs)">
|
||||
<summary>Called when the DrawOrder property changes. Raises the DrawOrderChanged event.</summary>
|
||||
<param name="sender">The DrawableGameComponent.</param>
|
||||
<param name="args">Arguments to the DrawOrderChanged event.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.DrawableGameComponent.OnVisibleChanged(System.Object,System.EventArgs)">
|
||||
<summary>Called when the Visible property changes. Raises the VisibleChanged event.</summary>
|
||||
<param name="sender">The DrawableGameComponent.</param>
|
||||
<param name="args">Arguments to the VisibleChanged event.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.DrawableGameComponent.UnloadContent">
|
||||
<summary>Called when graphics resources need to be unloaded. Override this method to unload any component-specific graphics resources.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.DrawableGameComponent.Visible">
|
||||
<summary>Indicates whether Draw should be called.</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.DrawableGameComponent.VisibleChanged">
|
||||
<summary>Raised when the Visible property changes.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.Game">
|
||||
<summary>Provides basic graphics device initialization, game logic, and rendering code.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.#ctor">
|
||||
<summary>Initializes a new instance of this class, which provides basic graphics device initialization, game logic, rendering code, and a game loop. Reference page contains code sample.</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.Game.Activated">
|
||||
<summary>Raised when the game gains focus.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.BeginDraw">
|
||||
<summary>Starts the drawing of a frame. This method is followed by calls to Draw and EndDraw.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.BeginRun">
|
||||
<summary>Called after all components are initialized but before the first update in the game loop.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Game.Components">
|
||||
<summary>Gets the collection of GameComponents owned by the game.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Game.Content">
|
||||
<summary>Gets or sets the current ContentManager.</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.Game.Deactivated">
|
||||
<summary>Raised when the game loses focus.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.Dispose">
|
||||
<summary>Immediately releases the unmanaged resources used by this object.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.Dispose(System.Boolean)">
|
||||
<summary>Releases all resources used by the Game class.</summary>
|
||||
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.Game.Disposed">
|
||||
<summary>Raised when the game is being disposed.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.Draw(Microsoft.Xna.Framework.GameTime)">
|
||||
<summary> Reference page contains code sample.</summary>
|
||||
<param name="gameTime">Time passed since the last call to Draw.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.EndDraw">
|
||||
<summary>Ends the drawing of a frame. This method is preceeded by calls to Draw and BeginDraw.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.EndRun">
|
||||
<summary>Called after the game loop has stopped running before exiting.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.Exit">
|
||||
<summary>Exits the game.</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.Game.Exiting">
|
||||
<summary>Raised when the game is exiting.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.Finalize">
|
||||
<summary>Allows a Game to attempt to free resources and perform other cleanup operations before garbage collection reclaims the Game.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Game.GraphicsDevice">
|
||||
<summary>Gets the current GraphicsDevice.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Game.InactiveSleepTime">
|
||||
<summary>Gets or sets the time to sleep when the game is inactive.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.Initialize">
|
||||
<summary>Called after the Game and GraphicsDevice are created, but before LoadContent. Reference page contains code sample.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Game.IsActive">
|
||||
<summary>Indicates whether the game is currently the active application.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Game.IsFixedTimeStep">
|
||||
<summary>Gets or sets a value indicating whether to use fixed time steps.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Game.IsMouseVisible">
|
||||
<summary>Gets or sets a value indicating whether the mouse cursor should be visible.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Game.LaunchParameters">
|
||||
<summary>Gets the start up parameters in LaunchParameters.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.LoadContent">
|
||||
<summary />
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.OnActivated(System.Object,System.EventArgs)">
|
||||
<summary>Raises the Activated event. Override this method to add code to handle when the game gains focus.</summary>
|
||||
<param name="sender">The Game.</param>
|
||||
<param name="args">Arguments for the Activated event.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.OnDeactivated(System.Object,System.EventArgs)">
|
||||
<summary>Raises the Deactivated event. Override this method to add code to handle when the game loses focus.</summary>
|
||||
<param name="sender">The Game.</param>
|
||||
<param name="args">Arguments for the Deactivated event.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.OnExiting(System.Object,System.EventArgs)">
|
||||
<summary>Raises an Exiting event. Override this method to add code to handle when the game is exiting.</summary>
|
||||
<param name="sender">The Game.</param>
|
||||
<param name="args">Arguments for the Exiting event.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.ResetElapsedTime">
|
||||
<summary>Resets the elapsed time counter.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.Run">
|
||||
<summary>Call this method to initialize the game, begin running the game loop, and start processing events for the game.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.RunOneFrame">
|
||||
<summary>Run the game through what would happen in a single tick of the game clock; this method is designed for debugging only.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Game.Services">
|
||||
<summary>Gets the GameServiceContainer holding all the service providers attached to the Game.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.ShowMissingRequirementMessage(System.Exception)">
|
||||
<summary>This is used to display an error message if there is no suitable graphics device or sound card.</summary>
|
||||
<param name="exception">The exception to display.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.SuppressDraw">
|
||||
<summary>Prevents calls to Draw until the next Update.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Game.TargetElapsedTime">
|
||||
<summary>Gets or sets the target time between calls to Update when IsFixedTimeStep is true. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.Tick">
|
||||
<summary>Updates the game's clock and calls Update and Draw.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.UnloadContent">
|
||||
<summary>Called when graphics resources need to be unloaded. Override this method to unload any game-specific graphics resources.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Game.Update(Microsoft.Xna.Framework.GameTime)">
|
||||
<summary> Reference page contains links to related conceptual articles.</summary>
|
||||
<param name="gameTime">Time passed since the last call to Update.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Game.Window">
|
||||
<summary>Gets the underlying operating system window.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.GameComponent">
|
||||
<summary>Base class for all XNA Framework game components.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameComponent.#ctor(Microsoft.Xna.Framework.Game)">
|
||||
<summary>Initializes a new instance of this class.</summary>
|
||||
<param name="game">Game that the game component should be attached to.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameComponent.Dispose">
|
||||
<summary>Immediately releases the unmanaged resources used by this object.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameComponent.Dispose(System.Boolean)">
|
||||
<summary>Releases the unmanaged resources used by the GameComponent and optionally releases the managed resources.</summary>
|
||||
<param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.GameComponent.Disposed">
|
||||
<summary>Raised when the GameComponent is disposed.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GameComponent.Enabled">
|
||||
<summary>Indicates whether GameComponent.Update should be called when Game.Update is called.</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.GameComponent.EnabledChanged">
|
||||
<summary>Raised when the Enabled property changes.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameComponent.Finalize">
|
||||
<summary>Allows a GameComponent to attempt to free resources and perform other cleanup operations before garbage collection reclaims the GameComponent.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GameComponent.Game">
|
||||
<summary>Gets the Game associated with this GameComponent.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameComponent.Initialize">
|
||||
<summary> Reference page contains code sample.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameComponent.OnEnabledChanged(System.Object,System.EventArgs)">
|
||||
<summary>Called when the Enabled property changes. Raises the EnabledChanged event.</summary>
|
||||
<param name="sender">The GameComponent.</param>
|
||||
<param name="args">Arguments to the EnabledChanged event.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameComponent.OnUpdateOrderChanged(System.Object,System.EventArgs)">
|
||||
<summary>Called when the UpdateOrder property changes. Raises the UpdateOrderChanged event.</summary>
|
||||
<param name="sender">The GameComponent.</param>
|
||||
<param name="args">Arguments to the UpdateOrderChanged event.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameComponent.Update(Microsoft.Xna.Framework.GameTime)">
|
||||
<summary>Called when the GameComponent needs to be updated. Override this method with component-specific update code.</summary>
|
||||
<param name="gameTime">Time elapsed since the last call to Update</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GameComponent.UpdateOrder">
|
||||
<summary>Indicates the order in which the GameComponent should be updated relative to other GameComponent instances. Lower values are updated first.</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.GameComponent.UpdateOrderChanged">
|
||||
<summary>Raised when the UpdateOrder property changes.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.GameComponentCollection">
|
||||
<summary>A collection of game components.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameComponentCollection.#ctor">
|
||||
<summary>Initializes a new instance of this class.</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.GameComponentCollection.ComponentAdded">
|
||||
<summary>Raised when a component is added to the GameComponentCollection.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.GameComponentCollection.ComponentRemoved">
|
||||
<summary>Raised when a component is removed from the GameComponentCollection.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.GameComponentCollectionEventArgs">
|
||||
<summary>Arguments used with events from the GameComponentCollection.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameComponentCollectionEventArgs.#ctor(Microsoft.Xna.Framework.IGameComponent)">
|
||||
<summary>Creates a new instance of GameComponentCollectionEventArgs.</summary>
|
||||
<param name="gameComponent">The game component affected by the event.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GameComponentCollectionEventArgs.GameComponent">
|
||||
<summary>The game component affected by the event.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.GameServiceContainer">
|
||||
<summary>A collection of game services.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameServiceContainer.#ctor">
|
||||
<summary>Initializes a new instance of this class, which represents a collection of game services.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameServiceContainer.AddService(System.Type,System.Object)">
|
||||
<summary>Adds a service to the GameServiceContainer.</summary>
|
||||
<param name="type">The type of service to add.</param>
|
||||
<param name="provider">The service provider to add.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameServiceContainer.GetService(System.Type)">
|
||||
<summary>Gets the object providing a specified service.</summary>
|
||||
<param name="type">The type of service.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameServiceContainer.RemoveService(System.Type)">
|
||||
<summary>Removes the object providing a specified service.</summary>
|
||||
<param name="type">The type of service.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.GameTime">
|
||||
<summary>Snapshot of the game timing state expressed in values that can be used by variable-step (real time) or fixed-step (game time) games.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameTime.#ctor">
|
||||
<summary>Creates a new instance of GameTime.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameTime.#ctor(System.TimeSpan,System.TimeSpan)">
|
||||
<summary>Creates a new instance of GameTime.</summary>
|
||||
<param name="totalGameTime">The amount of game time since the start of the game.</param>
|
||||
<param name="elapsedGameTime">The amount of elapsed game time since the last update.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameTime.#ctor(System.TimeSpan,System.TimeSpan,System.Boolean)">
|
||||
<summary>Creates a new instance of GameTime.</summary>
|
||||
<param name="totalGameTime">The amount of game time since the start of the game.</param>
|
||||
<param name="elapsedGameTime">The amount of elapsed game time since the last update.</param>
|
||||
<param name="isRunningSlowly">Whether the game is running multiple updates this frame.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GameTime.ElapsedGameTime">
|
||||
<summary>The amount of elapsed game time since the last update.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GameTime.IsRunningSlowly">
|
||||
<summary>Gets a value indicating that the game loop is taking longer than its TargetElapsedTime. In this case, the game loop can be considered to be running too slowly and should do something to "catch up."</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GameTime.TotalGameTime">
|
||||
<summary>The amount of game time since the start of the game.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.GameWindow">
|
||||
<summary>The system window associated with a Game.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GameWindow.AllowUserResizing">
|
||||
<summary>Specifies whether to allow the user to resize the game window.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameWindow.BeginScreenDeviceChange(System.Boolean)">
|
||||
<summary>Starts a device transition (windowed to full screen or vice versa).</summary>
|
||||
<param name="willBeFullScreen">Specifies whether the device will be in full-screen mode upon completion of the change.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GameWindow.ClientBounds">
|
||||
<summary>The screen dimensions of the game window's client rectangle.</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.GameWindow.ClientSizeChanged">
|
||||
<summary>Raised when the size of the GameWindow changes.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GameWindow.CurrentOrientation">
|
||||
<summary>Gets the current display orientation, which reflects the physical orientation of the phone in the user's hand.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameWindow.EndScreenDeviceChange(System.String)">
|
||||
<summary>Completes a device transition.</summary>
|
||||
<param name="screenDeviceName">The desktop screen to move the window to. This should be the screen device name of the graphics device that has transitioned to full screen.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameWindow.EndScreenDeviceChange(System.String,System.Int32,System.Int32)">
|
||||
<summary>Completes a device transition.</summary>
|
||||
<param name="screenDeviceName">The desktop screen to move the window to. This should be the screen device name of the graphics device that has transitioned to full screen.</param>
|
||||
<param name="clientWidth">The new width of the game's client window.</param>
|
||||
<param name="clientHeight">The new height of the game's client window.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GameWindow.Handle">
|
||||
<summary>Gets the handle to the system window.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameWindow.OnActivated">
|
||||
<summary>Called when the GameWindow gets focus.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameWindow.OnClientSizeChanged">
|
||||
<summary>Called when the size of the client window changes. Raises the ClientSizeChanged event.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameWindow.OnDeactivated">
|
||||
<summary>Called when the GameWindow loses focus.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameWindow.OnOrientationChanged">
|
||||
<summary>Called when the GameWindow display orientation changes.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameWindow.OnPaint">
|
||||
<summary>Called when the GameWindow needs to be painted.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameWindow.OnScreenDeviceNameChanged">
|
||||
<summary>Called when the GameWindow is moved to a different screen. Raises the ScreenDeviceNameChanged event.</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.GameWindow.OrientationChanged">
|
||||
<summary>Describes the event raised when the display orientation of the GameWindow changes. When this event occurs, the XNA Framework automatically adjusts the game orientation based on the value specified by the developer with SupportedOrientations.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GameWindow.ScreenDeviceName">
|
||||
<summary>Gets the device name of the screen the window is currently in.</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.GameWindow.ScreenDeviceNameChanged">
|
||||
<summary>Raised when the GameWindow moves to a different display.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameWindow.SetSupportedOrientations(Microsoft.Xna.Framework.DisplayOrientation)">
|
||||
<summary>Sets the supported display orientations.</summary>
|
||||
<param name="orientations">A set of supported display orientations.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GameWindow.SetTitle(System.String)">
|
||||
<summary>Sets the title of the GameWindow.</summary>
|
||||
<param name="title">The new title of the GameWindow.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GameWindow.Title">
|
||||
<summary>Gets and sets the title of the system window.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.GraphicsDeviceInformation">
|
||||
<summary>Holds the settings for creating a graphics device on Windows.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceInformation.#ctor">
|
||||
<summary>Initializes a new instance of this class.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GraphicsDeviceInformation.Adapter">
|
||||
<summary>Specifies which graphics adapter to create the device on.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceInformation.Clone">
|
||||
<summary>Creates a clone of this object.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceInformation.Equals(System.Object)">
|
||||
<summary>Returns a value that indicates whether the current instance is equal to a specified object.</summary>
|
||||
<param name="obj">The Object to compare with the current GraphicsDeviceInformation.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceInformation.GetHashCode">
|
||||
<summary>Gets the hash code for this object.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GraphicsDeviceInformation.GraphicsProfile">
|
||||
<summary>Gets the graphics profile, which determines the graphics feature set.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GraphicsDeviceInformation.PresentationParameters">
|
||||
<summary>Specifies the presentation parameters to use when creating a graphics device.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.GraphicsDeviceManager">
|
||||
<summary>Handles the configuration and management of the graphics device.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceManager.#ctor(Microsoft.Xna.Framework.Game)">
|
||||
<summary>Creates a new GraphicsDeviceManager and registers it to handle the configuration and management of the graphics device for the specified Game.</summary>
|
||||
<param name="game">Game the GraphicsDeviceManager should be associated with.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceManager.ApplyChanges">
|
||||
<summary>Applies any changes to device-related properties, changing the graphics device as necessary.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceManager.CanResetDevice(Microsoft.Xna.Framework.GraphicsDeviceInformation)">
|
||||
<summary>Determines whether the given GraphicsDeviceInformation is compatible with the existing graphics device.</summary>
|
||||
<param name="newDeviceInfo">Information describing the desired device configuration.</param>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.GraphicsDeviceManager.DefaultBackBufferHeight">
|
||||
<summary>Specifies the default minimum back-buffer height.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.GraphicsDeviceManager.DefaultBackBufferWidth">
|
||||
<summary>Specifies the default minimum back-buffer width.</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.GraphicsDeviceManager.DeviceCreated">
|
||||
<summary>Raised when a new graphics device is created.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.GraphicsDeviceManager.DeviceDisposing">
|
||||
<summary>Raised when the GraphicsDeviceManager is being disposed.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.GraphicsDeviceManager.DeviceReset">
|
||||
<summary>Raised when the GraphicsDeviceManager is reset.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.GraphicsDeviceManager.DeviceResetting">
|
||||
<summary>Raised when the GraphicsDeviceManager is about to be reset.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceManager.Dispose(System.Boolean)">
|
||||
<summary>Releases the unmanaged resources used by the GraphicsDeviceManager and optionally releases the managed resources.</summary>
|
||||
<param name="disposing">true to release both automatic and manual resources; false to release only manual resources.</param>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.GraphicsDeviceManager.Disposed">
|
||||
<summary>Raised when the GraphicsDeviceManager is disposed.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceManager.FindBestDevice(System.Boolean)">
|
||||
<summary>Finds the best device configuration that is compatible with the current device preferences.</summary>
|
||||
<param name="anySuitableDevice">true if the FindBestDevice can select devices from any available adapter; false if only the current adapter should be considered.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GraphicsDeviceManager.GraphicsDevice">
|
||||
<summary>Gets the GraphicsDevice associated with the GraphicsDeviceManager.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GraphicsDeviceManager.GraphicsProfile">
|
||||
<summary>Gets the graphics profile, which determines the graphics feature set.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GraphicsDeviceManager.IsFullScreen">
|
||||
<summary>Gets or sets a value that indicates whether the device should start in full-screen mode.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceManager.Microsoft#Xna#Framework#IGraphicsDeviceManager#BeginDraw">
|
||||
<summary>Prepares the GraphicsDevice to draw.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceManager.Microsoft#Xna#Framework#IGraphicsDeviceManager#CreateDevice">
|
||||
<summary>Called to ensure that the device manager has created a valid device.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceManager.Microsoft#Xna#Framework#IGraphicsDeviceManager#EndDraw">
|
||||
<summary>Called by the game at the end of drawing and presents the final rendering.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceManager.OnDeviceCreated(System.Object,System.EventArgs)">
|
||||
<summary>Called when a device is created. Raises the DeviceCreated event.</summary>
|
||||
<param name="sender">The GraphicsDeviceManager.</param>
|
||||
<param name="args">Arguments for the DeviceCreated event.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceManager.OnDeviceDisposing(System.Object,System.EventArgs)">
|
||||
<summary>Called when a device is being disposed. Raises the DeviceDisposing event.</summary>
|
||||
<param name="sender">The GraphicsDeviceManager.</param>
|
||||
<param name="args">Arguments for the DeviceDisposing event.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceManager.OnDeviceReset(System.Object,System.EventArgs)">
|
||||
<summary>Called when the device has been reset. Raises the DeviceReset event.</summary>
|
||||
<param name="sender">The GraphicsDeviceManager.</param>
|
||||
<param name="args">Arguments for the DeviceReset event.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceManager.OnDeviceResetting(System.Object,System.EventArgs)">
|
||||
<summary>Called when the device is about to be reset. Raises the DeviceResetting event.</summary>
|
||||
<param name="sender">The GraphicsDeviceManager.</param>
|
||||
<param name="args">Arguments for the DeviceResetting event.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceManager.OnPreparingDeviceSettings(System.Object,Microsoft.Xna.Framework.PreparingDeviceSettingsEventArgs)">
|
||||
<summary>Called when the GraphicsDeviceManager is changing the GraphicsDevice settings (during reset or recreation of the GraphicsDevice). Raises the PreparingDeviceSettings event.</summary>
|
||||
<param name="sender">The GraphicsDeviceManager.</param>
|
||||
<param name="args">The graphics device information to modify.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GraphicsDeviceManager.PreferMultiSampling">
|
||||
<summary />
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GraphicsDeviceManager.PreferredBackBufferFormat">
|
||||
<summary>Gets or sets the format of the back buffer.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GraphicsDeviceManager.PreferredBackBufferHeight">
|
||||
<summary>Gets or sets the preferred back-buffer height.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GraphicsDeviceManager.PreferredBackBufferWidth">
|
||||
<summary>Gets or sets the preferred back-buffer width.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GraphicsDeviceManager.PreferredDepthStencilFormat">
|
||||
<summary>Gets or sets the format of the depth stencil.</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.GraphicsDeviceManager.PreparingDeviceSettings">
|
||||
<summary>Raised when the GraphicsDeviceManager is changing the GraphicsDevice settings (during reset or recreation of the GraphicsDevice).</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceManager.RankDevices(System.Collections.Generic.List{Microsoft.Xna.Framework.GraphicsDeviceInformation})">
|
||||
<summary>Ranks the given list of devices that satisfy the given preferences.</summary>
|
||||
<param name="foundDevices">The list of devices to rank.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GraphicsDeviceManager.SupportedOrientations">
|
||||
<summary>Gets or sets the display orientations that are available if automatic rotation and scaling is enabled.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.GraphicsDeviceManager.SynchronizeWithVerticalRetrace">
|
||||
<summary>Gets or sets a value that indicates whether to sync to the vertical trace (vsync) when presenting the back buffer.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceManager.System#IDisposable#Dispose">
|
||||
<summary>Releases all resources used by the GraphicsDeviceManager class.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GraphicsDeviceManager.ToggleFullScreen">
|
||||
<summary>Toggles between full screen and windowed mode.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.IDrawable">
|
||||
<summary>Defines the interface for a drawable game component.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.IDrawable.Draw(Microsoft.Xna.Framework.GameTime)">
|
||||
<summary>Draws the IDrawable. Reference page contains links to related conceptual articles.</summary>
|
||||
<param name="gameTime">Snapshot of the game's timing state.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.IDrawable.DrawOrder">
|
||||
<summary>The order in which to draw this object relative to other objects. Objects with a lower value are drawn first.</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.IDrawable.DrawOrderChanged">
|
||||
<summary>Raised when the DrawOrder property changes.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.IDrawable.Visible">
|
||||
<summary>Indicates whether IDrawable.Draw should be called in Game.Draw for this game component.</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.IDrawable.VisibleChanged">
|
||||
<summary>Raised when the Visible property changes.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.IGameComponent">
|
||||
<summary>Defines an interface for game components.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.IGameComponent.Initialize">
|
||||
<summary>Called when the component should be initialized. This method can be used for tasks like querying for services the component needs and setting up non-graphics resources.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.IGraphicsDeviceManager">
|
||||
<summary>Defines the interface for an object that manages a GraphicsDevice.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.IGraphicsDeviceManager.BeginDraw">
|
||||
<summary>Starts the drawing of a frame.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.IGraphicsDeviceManager.CreateDevice">
|
||||
<summary>Called to ensure that the device manager has created a valid device.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.IGraphicsDeviceManager.EndDraw">
|
||||
<summary>Called by the game at the end of drawing; presents the final rendering.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.IUpdateable">
|
||||
<summary>Defines an interface for a game component that should be updated in Game.Update.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.IUpdateable.Enabled">
|
||||
<summary>Indicates whether the game component's Update method should be called in Game.Update.</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.IUpdateable.EnabledChanged">
|
||||
<summary>Raised when the Enabled property changes.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.IUpdateable.Update(Microsoft.Xna.Framework.GameTime)">
|
||||
<summary>Called when the game component should be updated.</summary>
|
||||
<param name="gameTime">Snapshot of the game's timing state.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.IUpdateable.UpdateOrder">
|
||||
<summary>Indicates when the game component should be updated relative to other game components. Lower values are updated first.</summary>
|
||||
</member>
|
||||
<member name="E:Microsoft.Xna.Framework.IUpdateable.UpdateOrderChanged">
|
||||
<summary>Raised when the UpdateOrder property changes.</summary>
|
||||
<param name="" />
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.LaunchParameters">
|
||||
<summary>The start up parameters for launching a Windows Phone or Windows game.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.LaunchParameters.#ctor">
|
||||
<summary>Initializes a new instance of LaunchParameters.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.PreparingDeviceSettingsEventArgs">
|
||||
<summary>Arguments for the GraphicsDeviceManager.PreparingDeviceSettings event.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.PreparingDeviceSettingsEventArgs.#ctor(Microsoft.Xna.Framework.GraphicsDeviceInformation)">
|
||||
<summary>Creates a new instance of PreparingDeviceSettingsEventArgs.</summary>
|
||||
<param name="graphicsDeviceInformation">Information about the GraphicsDevice.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.PreparingDeviceSettingsEventArgs.GraphicsDeviceInformation">
|
||||
<summary>Information about the GraphicsDevice.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.GamerServices.GamerServicesComponent">
|
||||
<summary>Wraps the functionality of the GamerServicesDispatcher.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GamerServices.GamerServicesComponent.#ctor(Microsoft.Xna.Framework.Game)">
|
||||
<summary>Creates a new GamerServicesComponent.</summary>
|
||||
<param name="game">The game that will be associated with this component.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GamerServices.GamerServicesComponent.Initialize">
|
||||
<summary>Initializes the GamerServicesDispatcher.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.GamerServices.GamerServicesComponent.Update(Microsoft.Xna.Framework.GameTime)">
|
||||
<summary>Updates the GamerServicesDispatcher.</summary>
|
||||
<param name="gameTime">The game timing state.</param>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
@ -0,0 +1,252 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<members>
|
||||
<member name="T:Microsoft.Xna.Framework.Input.Touch.GestureSample">
|
||||
<summary>A representation of data from a multitouch gesture over a span of time.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.GestureSample.Delta">
|
||||
<summary>Holds delta information about the first touchpoint in a multitouch gesture.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.GestureSample.Delta2">
|
||||
<summary>Holds delta information about the second touchpoint in a multitouch gesture.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.GestureSample.GestureType">
|
||||
<summary>The type of gesture in a multitouch gesture sample.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.GestureSample.Position">
|
||||
<summary>Holds the current position of the first touchpoint in this gesture sample.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.GestureSample.Position2">
|
||||
<summary>Holds the current position of the the second touchpoint in this gesture sample.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.GestureSample.Timestamp">
|
||||
<summary>Holds the starting time for this touch gesture sample.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.Input.Touch.GestureType">
|
||||
<summary>Contains values that represent different multitouch gestures that can be detected by TouchPanel.ReadGesture. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.DoubleTap">
|
||||
<summary>The user tapped the screen twice in quick succession. This always is preceded by a Tap gesture. If the time between taps is too great to be considered a DoubleTap, two Tap gestures will be generated instead.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.DragComplete">
|
||||
<summary>A drag gesture (VerticalDrag, HorizontalDrag, or FreeDrag) was completed. This signals only completion. No position or delta data is valid for this sample.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.Flick">
|
||||
<summary>The user performed a touch combined with a quick swipe of the screen. Flicks are positionless. The velocity of the flick can be retrieved by reading the Delta member of GestureSample.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.FreeDrag">
|
||||
<summary>The user touched the screen, and then performed a free-form drag gesture.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.Hold">
|
||||
<summary>The user touched a single point on the screen for approximately one second. This is a single event, and not continuously generated while the user is holding the touchpoint.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.HorizontalDrag">
|
||||
<summary>The user touched the screen, and then performed a horizontal (left to right or right to left) gesture.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.None">
|
||||
<summary>Represents no gestures.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.Pinch">
|
||||
<summary>The user touched two points on the screen, and then converged or diverged them. Pinch behaves like a two-finger drag. When this gesture is enabled, it takes precedence over drag gestures while two fingers are down.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.PinchComplete">
|
||||
<summary>A pinch operation was completed. This signals only completion. No position or delta data is valid for this sample.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.Tap">
|
||||
<summary>The user briefly touched a single point on the screen.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.VerticalDrag">
|
||||
<summary>The user touched the screen, and then performed a vertical (top to bottom or bottom to top) gesture.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.Input.Touch.TouchCollection">
|
||||
<summary>Provides methods and properties for accessing state information for the touch screen of a touch-enabled device. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.#ctor(Microsoft.Xna.Framework.Input.Touch.TouchLocation[])">
|
||||
<summary>Initializes a new instance of the TouchCollection structure with a set of touch locations. Reference page contains links to related code samples.</summary>
|
||||
<param name="touches">Array of touch locations.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Add(Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
|
||||
<summary>Adds a TouchLocation to the collection.</summary>
|
||||
<param name="item">TouchLocation to add.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Clear">
|
||||
<summary>Removes all TouchLocation objects from the collection.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Contains(Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
|
||||
<summary>Checks if the current touch collection contains the specified touch location.</summary>
|
||||
<param name="item">Touch location to be checked against the current collection.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.CopyTo(Microsoft.Xna.Framework.Input.Touch.TouchLocation[],System.Int32)">
|
||||
<summary>Copies the touch location to the collection at the specified index.</summary>
|
||||
<param name="array">Array receiving the copied touch location.</param>
|
||||
<param name="arrayIndex">Target index of the collection.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Count">
|
||||
<summary>Gets the current number of touch locations for the touch screen.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.FindById(System.Int32,Microsoft.Xna.Framework.Input.Touch.TouchLocation@)">
|
||||
<summary>Retrieves the touch location matching the specified ID.</summary>
|
||||
<param name="id">ID of touch location sought.</param>
|
||||
<param name="touchLocation">[OutAttribute] Touch location item matching the specified ID.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.GetEnumerator">
|
||||
<summary>Returns an enumerator that iterates through the TouchCollection.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.IndexOf(Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
|
||||
<summary>Determines the index of a TouchLocation in the TouchCollection.</summary>
|
||||
<param name="item">TouchLocation to locate in the collection.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Insert(System.Int32,Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
|
||||
<summary>Inserts a new TouchLocation into the TouchCollection at a specified index.</summary>
|
||||
<param name="index">Index in the touch collection for the new item.</param>
|
||||
<param name="item">TouchLocation to be inserted.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchCollection.IsConnected">
|
||||
<summary>Indicates if the touch screen is available for use.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchCollection.IsReadOnly">
|
||||
<summary>Determines if the touch location array is read-only.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Item(System.Int32)">
|
||||
<summary>Gets or sets the information of the specified touch location.</summary>
|
||||
<param name="index">Index of the touch location to return.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Remove(Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
|
||||
<summary>Removes the specified TouchLocation from the TouchCollection.</summary>
|
||||
<param name="item">TouchLocation to be removed.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.RemoveAt(System.Int32)">
|
||||
<summary>Removes a TouchLocation at the specified index in the TouchCollection.</summary>
|
||||
<param name="index">Index of the TouchLocation to remove.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.System#Collections#IEnumerable#GetEnumerator">
|
||||
<summary>Returns an enumerator that iterates through the TouchCollection.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Enumerator">
|
||||
<summary>Provides the ability to iterate through the touch locations in a TouchCollection.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Enumerator.Current">
|
||||
<summary>Gets the current element in the TouchCollection.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Enumerator.Dispose">
|
||||
<summary>Immediately releases the unmanaged resources used by this object.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Enumerator.MoveNext">
|
||||
<summary>Advances the enumerator to the next element of the TouchCollection.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Enumerator.System#Collections#IEnumerator#Current">
|
||||
<summary>Gets the current element in the TouchCollection as an object.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Enumerator.System#Collections#IEnumerator#Reset">
|
||||
<summary>Sets the enumerator to its initial position, which is before the first element in the TouchCollection.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.Input.Touch.TouchLocation">
|
||||
<summary>Provides methods and properties for interacting with a touch location on a touch screen device. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.#ctor(System.Int32,Microsoft.Xna.Framework.Input.Touch.TouchLocationState,Microsoft.Xna.Framework.Vector2)">
|
||||
<summary>Initializes a new TouchLocation with an ID, state, position, and pressure.</summary>
|
||||
<param name="id">ID of the new touch location.</param>
|
||||
<param name="state">State of the new touch location.</param>
|
||||
<param name="position">Position, in screen coordinates, of the new touch location.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.#ctor(System.Int32,Microsoft.Xna.Framework.Input.Touch.TouchLocationState,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Input.Touch.TouchLocationState,Microsoft.Xna.Framework.Vector2)">
|
||||
<summary>Initializes a new TouchLocation with an ID, and a set of both current and previous state, position, and pressure values.</summary>
|
||||
<param name="id">ID of the new touch location.</param>
|
||||
<param name="state">State of the new touch location.</param>
|
||||
<param name="position">Position, in screen coordinates, of the new touch location.</param>
|
||||
<param name="previousState">Previous state for the new touch location.</param>
|
||||
<param name="previousPosition">Previous position for the new touch location.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.Equals(Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
|
||||
<summary>Determines whether the current TouchLocation is equal to the specified TouchLocation.</summary>
|
||||
<param name="other">The TouchLocation to compare with this instance.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.Equals(System.Object)">
|
||||
<summary>Determines whether the current TouchLocation is equal to the specified object.</summary>
|
||||
<param name="obj">The Object to compare with the touch location.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.GetHashCode">
|
||||
<summary>Gets the hash code for this TouchLocation.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchLocation.Id">
|
||||
<summary>Gets the ID of the touch location.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.op_Equality(Microsoft.Xna.Framework.Input.Touch.TouchLocation,Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
|
||||
<summary>Determines whether two TouchLocation instances are equal.</summary>
|
||||
<param name="value1">The TouchLocation to compare with the second.</param>
|
||||
<param name="value2">The TouchLocation to compare with the first.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.op_Inequality(Microsoft.Xna.Framework.Input.Touch.TouchLocation,Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
|
||||
<summary>Determines whether two TouchLocation instances are unequal.</summary>
|
||||
<param name="value1">The TouchLocation to compare with the second.</param>
|
||||
<param name="value2">The TouchLocation to compare with the first.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchLocation.Position">
|
||||
<summary>Gets the position of the touch location.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchLocation.State">
|
||||
<summary>Gets the state of the touch location.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.ToString">
|
||||
<summary>Gets a string representation of the TouchLocation.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.TryGetPreviousLocation(Microsoft.Xna.Framework.Input.Touch.TouchLocation@)">
|
||||
<summary>Attempts to get the previous location of this touch location object.</summary>
|
||||
<param name="previousLocation">[OutAttribute] Previous location data, as a TouchLocation.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.Input.Touch.TouchLocationState">
|
||||
<summary>Defines the possible states of a touch location. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.TouchLocationState.Invalid">
|
||||
<summary>This touch location position is invalid. Typically, you will encounter this state when a new touch location attempts to get the previous state of itself.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.TouchLocationState.Moved">
|
||||
<summary>This touch location position was updated or pressed at the same position.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.TouchLocationState.Pressed">
|
||||
<summary>This touch location position is new.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.TouchLocationState.Released">
|
||||
<summary>This touch location position was released.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.Input.Touch.TouchPanel">
|
||||
<summary>Provides methods for retrieving touch panel device information. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanel.DisplayHeight">
|
||||
<summary>Gets or sets the display height of the touch panel.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanel.DisplayOrientation">
|
||||
<summary>Gets or sets the display orientation of the touch panel.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanel.DisplayWidth">
|
||||
<summary>Gets or sets the display width of the touch panel.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanel.EnabledGestures">
|
||||
<summary>Gets or sets the gestures that are enabled for the touch panel. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchPanel.GetCapabilities">
|
||||
<summary>Gets the touch panel capabilities for an available device. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchPanel.GetState">
|
||||
<summary>Gets the current state of the touch panel. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanel.IsGestureAvailable">
|
||||
<summary>Used to determine if a touch gesture is available. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchPanel.ReadGesture">
|
||||
<summary>Reads an available gesture on the touch panel. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanel.WindowHandle">
|
||||
<summary>The window handle of the touch panel.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.Input.Touch.TouchPanelCapabilities">
|
||||
<summary>Provides access to information about the capabilities of the touch input device. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanelCapabilities.IsConnected">
|
||||
<summary>Indicates if the touch panel device is available for use.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanelCapabilities.MaximumTouchCount">
|
||||
<summary>Gets the maximum number of touch locations that can be tracked by the touch pad device.</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,65 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<XnaContent xmlns:Pipeline="Microsoft.Xna.Framework.Content.Pipeline">
|
||||
<Asset Type="Pipeline:BuildItemCollection">
|
||||
<Item>
|
||||
<Source>NoEffect.fx</Source>
|
||||
<Name>NoEffect</Name>
|
||||
<Importer>EffectImporter</Importer>
|
||||
<Processor>EffectProcessor</Processor>
|
||||
<Options>None</Options>
|
||||
<Output>C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\bin\x86\Debug\Content\NoEffect.xnb</Output>
|
||||
<Time>2018-07-16T19:45:32.2460451-07:00</Time>
|
||||
</Item>
|
||||
<Item>
|
||||
<Source>GreyScaleEffect.fx</Source>
|
||||
<Name>GreyScaleEffect</Name>
|
||||
<Importer>EffectImporter</Importer>
|
||||
<Processor>EffectProcessor</Processor>
|
||||
<Options>None</Options>
|
||||
<Output>C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\bin\x86\Debug\Content\GreyScaleEffect.xnb</Output>
|
||||
<Time>2018-07-18T22:20:40.2080638-07:00</Time>
|
||||
</Item>
|
||||
<BuildSuccessful>true</BuildSuccessful>
|
||||
<Settings>
|
||||
<ContentProjectGUID>{58C274AC-3DD6-4FC1-9E6B-9E2D8D885F08}</ContentProjectGUID>
|
||||
<TargetPlatform>Windows</TargetPlatform>
|
||||
<TargetProfile>Reach</TargetProfile>
|
||||
<BuildConfiguration>Debug</BuildConfiguration>
|
||||
<CompressContent>false</CompressContent>
|
||||
<RootDirectory>C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2Content\</RootDirectory>
|
||||
<LoggerRootDirectory>C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\</LoggerRootDirectory>
|
||||
<IntermediateDirectory>C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\obj\x86\Debug\</IntermediateDirectory>
|
||||
<OutputDirectory>C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\bin\x86\Debug\Content\</OutputDirectory>
|
||||
</Settings>
|
||||
<Assemblies>
|
||||
<Assembly>
|
||||
<Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.XImporter.dll</Key>
|
||||
<Value>2011-09-01T16:22:30-07:00</Value>
|
||||
</Assembly>
|
||||
<Assembly>
|
||||
<Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.VideoImporters.dll</Key>
|
||||
<Value>2011-09-01T16:22:30-07:00</Value>
|
||||
</Assembly>
|
||||
<Assembly>
|
||||
<Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.TextureImporter.dll</Key>
|
||||
<Value>2011-09-01T16:22:30-07:00</Value>
|
||||
</Assembly>
|
||||
<Assembly>
|
||||
<Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.FBXImporter.dll</Key>
|
||||
<Value>2011-09-01T16:22:30-07:00</Value>
|
||||
</Assembly>
|
||||
<Assembly>
|
||||
<Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.EffectImporter.dll</Key>
|
||||
<Value>2011-09-01T16:22:30-07:00</Value>
|
||||
</Assembly>
|
||||
<Assembly>
|
||||
<Key>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Content.Pipeline.AudioImporters.dll</Key>
|
||||
<Value>2011-09-01T16:22:30-07:00</Value>
|
||||
</Assembly>
|
||||
<Assembly>
|
||||
<Key>C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.Xna.Framework.Content.Pipeline\v4.0_4.0.0.0__842cf8be1de50553\Microsoft.Xna.Framework.Content.Pipeline.dll</Key>
|
||||
<Value>2018-07-16T14:58:20.8638642-07:00</Value>
|
||||
</Assembly>
|
||||
</Assemblies>
|
||||
</Asset>
|
||||
</XnaContent>
|
|
@ -0,0 +1 @@
|
|||
Windows.v4.0.Reach
|
|
@ -0,0 +1 @@
|
|||
195bd43c29a6ba026ccc6f6be4e6865b933bd563
|
|
@ -0,0 +1,19 @@
|
|||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\bin\x86\Debug\WindowsGame2.exe
|
||||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\bin\x86\Debug\WindowsGame2.pdb
|
||||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\bin\x86\Debug\Microsoft.Xna.Framework.dll
|
||||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\bin\x86\Debug\Microsoft.Xna.Framework.Game.dll
|
||||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\bin\x86\Debug\Microsoft.Xna.Framework.GamerServices.dll
|
||||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\bin\x86\Debug\Microsoft.Xna.Framework.Graphics.dll
|
||||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\bin\x86\Debug\Microsoft.Xna.Framework.Input.Touch.dll
|
||||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\bin\x86\Debug\Microsoft.Xna.Framework.xml
|
||||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\bin\x86\Debug\Microsoft.Xna.Framework.Game.xml
|
||||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\bin\x86\Debug\Microsoft.Xna.Framework.Graphics.xml
|
||||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\bin\x86\Debug\Microsoft.Xna.Framework.GamerServices.xml
|
||||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\bin\x86\Debug\Microsoft.Xna.Framework.Input.Touch.xml
|
||||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\obj\x86\Debug\Microsoft.Xna.Framework.RuntimeProfile.txt
|
||||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\obj\x86\Debug\WindowsGame2.csproj.CoreCompileInputs.cache
|
||||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\obj\x86\Debug\WindowsGame2.csproj.CopyComplete
|
||||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\obj\x86\Debug\WindowsGame2.exe
|
||||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\obj\x86\Debug\WindowsGame2.pdb
|
||||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\bin\x86\Debug\Content\NoEffect.xnb
|
||||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2\bin\x86\Debug\Content\GreyScaleEffect.xnb
|
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,2 @@
|
|||
Content\NoEffect.xnb
|
||||
Content\GreyScaleEffect.xnb
|
|
@ -0,0 +1,21 @@
|
|||
sampler s0;
|
||||
float4 PixelShaderFunction(float2 coords: TEXCOORD0) : COLOR0
|
||||
{
|
||||
float4 color = tex2D(s0, coords); //Get the default pixel color.
|
||||
float r = color.r;
|
||||
float g = color.g;
|
||||
float b = color.b;
|
||||
float a = color.a;
|
||||
float Gray = (r * 0.3 + g * 0.59 + b * 0.11);
|
||||
|
||||
color.rgb = Gray;
|
||||
return color;
|
||||
}
|
||||
|
||||
technique Technique1
|
||||
{
|
||||
pass Pass1
|
||||
{
|
||||
PixelShader = compile ps_2_0 PixelShaderFunction();
|
||||
}
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
sampler s0;
|
||||
float4 PixelShaderFunction(float2 coords: TEXCOORD0) : COLOR0
|
||||
{
|
||||
float4 color = tex2D(s0, coords); //Get the default pixel color.
|
||||
return color;
|
||||
}
|
||||
|
||||
technique Technique1
|
||||
{
|
||||
pass Pass1
|
||||
{
|
||||
PixelShader = compile ps_2_0 PixelShaderFunction();
|
||||
}
|
||||
}
|
|
@ -0,0 +1,53 @@
|
|||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ProjectGuid>{58C274AC-3DD6-4FC1-9E6B-9E2D8D885F08}</ProjectGuid>
|
||||
<ProjectTypeGuids>{96E2B04D-8817-42c6-938A-82C39BA4D311};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||
<XnaFrameworkVersion>v4.0</XnaFrameworkVersion>
|
||||
<OutputPath>bin\$(Platform)\$(Configuration)</OutputPath>
|
||||
<ContentRootDirectory>Content</ContentRootDirectory>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<RootNamespace>WindowsGame2Content</RootNamespace>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="Microsoft.Xna.Framework.Content.Pipeline.EffectImporter, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=MSIL" />
|
||||
<Reference Include="Microsoft.Xna.Framework.Content.Pipeline.FBXImporter, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=MSIL" />
|
||||
<Reference Include="Microsoft.Xna.Framework.Content.Pipeline.TextureImporter, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=MSIL" />
|
||||
<Reference Include="Microsoft.Xna.Framework.Content.Pipeline.XImporter, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=MSIL" />
|
||||
<Reference Include="Microsoft.Xna.Framework.Content.Pipeline.AudioImporters, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=MSIL" />
|
||||
<Reference Include="Microsoft.Xna.Framework.Content.Pipeline.VideoImporters, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=MSIL" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="NoEffect.fx">
|
||||
<Name>NoEffect</Name>
|
||||
<Importer>EffectImporter</Importer>
|
||||
<Processor>EffectProcessor</Processor>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="GreyScaleEffect.fx">
|
||||
<Name>GreyScaleEffect</Name>
|
||||
<Importer>EffectImporter</Importer>
|
||||
<Processor>EffectProcessor</Processor>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
26d7de9b62fcad55b2171db2099ba5995f37a3ff
|
|
@ -0,0 +1 @@
|
|||
C:\Users\iD Student\Desktop\Stardew\WindowsGame2\WindowsGame2\WindowsGame2Content\obj\x86\Debug\WindowsGame2Content.contentproj.CoreCompileInputs.cache
|
Loading…
Reference in New Issue