Implemented a lot of basic behaviour in the Media namespace

This commit is contained in:
SND\AstrorEnales_cp 2012-08-26 10:31:54 +00:00
parent 90d8c6d2ad
commit e23261bfc3
60 changed files with 449 additions and 318 deletions

View File

@ -430,11 +430,11 @@
<Compile Include="NonXNA\PlatformSystem\INativeTitleContainer.cs" />
<Compile Include="NonXNA\PlatformSystem\INativeGameTimer.cs" />
<Compile Include="NonXNA\PlatformSystem\INativeContentManager.cs" />
<Compile Include="NonXNA\PlatformSystem\INativeMediaLibrary.cs" />
<Compile Include="NonXNA\Reflection\AssemblyLoader.cs" />
<Compile Include="NonXNA\SoundSystem\IMicrophone.cs" />
<Compile Include="NonXNA\Windows8\AssetsHelper.cs" />
<Compile Include="NonXNA\Windows8\IServiceProvider.cs" />
<Compile Include="NonXNA\MediaSystem\IMediaSystemCreator.cs" />
<Compile Include="NonXNA\NoInputDeviceException.cs" />
<Compile Include="NonXNA\OSInformation.cs" />
<Compile Include="NonXNA\PlatformSystem\IPlatformSystemCreator.cs" />

View File

@ -432,11 +432,11 @@
<Compile Include="NonXNA\PlatformSystem\INativeTitleContainer.cs" />
<Compile Include="NonXNA\PlatformSystem\INativeGameTimer.cs" />
<Compile Include="NonXNA\PlatformSystem\INativeContentManager.cs" />
<Compile Include="NonXNA\PlatformSystem\INativeMediaLibrary.cs" />
<Compile Include="NonXNA\Reflection\AssemblyLoader.cs" />
<Compile Include="NonXNA\SoundSystem\IMicrophone.cs" />
<Compile Include="NonXNA\Windows8\AssetsHelper.cs" />
<Compile Include="NonXNA\Windows8\IServiceProvider.cs" />
<Compile Include="NonXNA\MediaSystem\IMediaSystemCreator.cs" />
<Compile Include="NonXNA\NoInputDeviceException.cs" />
<Compile Include="NonXNA\OSInformation.cs" />
<Compile Include="NonXNA\PlatformSystem\IPlatformSystemCreator.cs" />

View File

@ -433,11 +433,11 @@
<Compile Include="NonXNA\PlatformSystem\INativeTitleContainer.cs" />
<Compile Include="NonXNA\PlatformSystem\INativeGameTimer.cs" />
<Compile Include="NonXNA\PlatformSystem\INativeContentManager.cs" />
<Compile Include="NonXNA\PlatformSystem\INativeMediaLibrary.cs" />
<Compile Include="NonXNA\Reflection\AssemblyLoader.cs" />
<Compile Include="NonXNA\SoundSystem\IMicrophone.cs" />
<Compile Include="NonXNA\Windows8\AssetsHelper.cs" />
<Compile Include="NonXNA\Windows8\IServiceProvider.cs" />
<Compile Include="NonXNA\MediaSystem\IMediaSystemCreator.cs" />
<Compile Include="NonXNA\NoInputDeviceException.cs" />
<Compile Include="NonXNA\OSInformation.cs" />
<Compile Include="NonXNA\PlatformSystem\IPlatformSystemCreator.cs" />

View File

@ -11,10 +11,8 @@ namespace ANX.Framework.Media
{
public bool IsDisposed
{
get
{
throw new NotImplementedException();
}
get;
private set;
}
public string Name
@ -65,10 +63,17 @@ namespace ANX.Framework.Media
}
}
#region Constructor
private Album()
{
IsDisposed = false;
}
~Album()
{
Dispose();
}
#endregion
public Stream GetAlbumArt()
{
@ -82,7 +87,11 @@ namespace ANX.Framework.Media
public void Dispose()
{
throw new NotImplementedException();
if (IsDisposed == false)
{
IsDisposed = true;
throw new NotImplementedException();
}
}
public bool Equals(Album other)
@ -90,29 +99,38 @@ namespace ANX.Framework.Media
throw new NotImplementedException();
}
public override bool Equals(object other)
public override bool Equals(object obj)
{
throw new NotImplementedException();
if (obj is Album)
return Equals(obj as Album);
return base.Equals(obj);
}
#region ToString
public override string ToString()
{
return Name;
}
#endregion
#region GetHashCode
public override int GetHashCode()
{
return Name.GetHashCode();
}
#endregion
#region Operator overloading
public static bool operator ==(Album first, Album second)
{
throw new NotImplementedException();
return first.Equals(second);
}
public static bool operator !=(Album first, Album second)
{
throw new NotImplementedException();
}
public override string ToString()
{
throw new NotImplementedException();
}
public override int GetHashCode()
{
throw new NotImplementedException();
return first.Equals(second) == false;
}
#endregion
}
}

View File

@ -8,8 +8,7 @@ using System.Collections.Generic;
namespace ANX.Framework.Media
{
public sealed class AlbumCollection
: IEnumerable<Album>, IEnumerable, IDisposable
public sealed class AlbumCollection : IEnumerable<Album>, IEnumerable, IDisposable
{
private List<Album> albums;
@ -35,7 +34,7 @@ namespace ANX.Framework.Media
}
}
public AlbumCollection()
internal AlbumCollection()
{
albums = new List<Album>();
IsDisposed = false;

View File

@ -10,10 +10,8 @@ namespace ANX.Framework.Media
{
public bool IsDisposed
{
get
{
throw new NotImplementedException();
}
get;
private set;
}
public string Name
@ -40,10 +38,17 @@ namespace ANX.Framework.Media
}
}
#region Constructor
private Artist()
{
IsDisposed = false;
}
~Artist()
{
Dispose();
}
#endregion
public bool Equals(Artist other)
{
@ -52,32 +57,45 @@ namespace ANX.Framework.Media
public override bool Equals(object obj)
{
throw new NotImplementedException();
if (obj is Artist)
return Equals(obj as Artist);
return base.Equals(obj);
}
public void Dispose()
{
throw new NotImplementedException();
if (IsDisposed == false)
{
IsDisposed = true;
throw new NotImplementedException();
}
}
#region ToString
public override string ToString()
{
throw new NotImplementedException();
return Name;
}
#endregion
#region GetHashCode
public override int GetHashCode()
{
throw new NotImplementedException();
return Name.GetHashCode();
}
#endregion
#region Operator overloading
public static bool operator ==(Artist first, Artist second)
{
throw new NotImplementedException();
return first.Equals(second);
}
public static bool operator !=(Artist first, Artist second)
{
throw new NotImplementedException();
return first.Equals(second) == false;
}
#endregion
}
}

View File

@ -8,8 +8,7 @@ using System.Collections.Generic;
namespace ANX.Framework.Media
{
public sealed class ArtistCollection
: IEnumerable<Artist>, IEnumerable, IDisposable
public sealed class ArtistCollection : IEnumerable<Artist>, IEnumerable, IDisposable
{
private List<Artist> artists;
@ -35,7 +34,7 @@ namespace ANX.Framework.Media
}
}
public ArtistCollection()
internal ArtistCollection()
{
artists = new List<Artist>();
IsDisposed = false;

View File

@ -10,10 +10,8 @@ namespace ANX.Framework.Media
{
public bool IsDisposed
{
get
{
throw new NotImplementedException();
}
get;
private set;
}
public string Name
@ -39,11 +37,18 @@ namespace ANX.Framework.Media
throw new NotImplementedException();
}
}
#region Constructor
private Genre()
{
IsDisposed = false;
}
~Genre()
{
Dispose();
}
#endregion
public bool Equals(Genre other)
{
@ -52,32 +57,45 @@ namespace ANX.Framework.Media
public override bool Equals(object obj)
{
throw new NotImplementedException();
if (obj is Genre)
return Equals(obj as Genre);
return base.Equals(obj);
}
public void Dispose()
{
throw new NotImplementedException();
if (IsDisposed == false)
{
IsDisposed = true;
throw new NotImplementedException();
}
}
#region ToString
public override string ToString()
{
throw new NotImplementedException();
return Name;
}
#endregion
#region GetHashCode
public override int GetHashCode()
{
throw new NotImplementedException();
return Name.GetHashCode();
}
#endregion
#region Operator overloading
public static bool operator ==(Genre first, Genre second)
{
throw new NotImplementedException();
return first.Equals(second);
}
public static bool operator !=(Genre first, Genre second)
{
throw new NotImplementedException();
return first.Equals(second) == false;
}
#endregion
}
}

View File

@ -8,8 +8,7 @@ using System.Collections.Generic;
namespace ANX.Framework.Media
{
public sealed class GenreCollection
: IEnumerable<Genre>, IEnumerable, IDisposable
public sealed class GenreCollection : IEnumerable<Genre>, IEnumerable, IDisposable
{
private List<Genre> genres;
@ -35,7 +34,7 @@ namespace ANX.Framework.Media
}
}
public GenreCollection()
internal GenreCollection()
{
genres = new List<Genre>();
IsDisposed = false;

View File

@ -95,8 +95,7 @@ namespace ANX.Framework.Media
public MediaLibrary()
{
nativeLibrary = AddInSystemFactory.DefaultPlatformCreator.CreateMediaPlayer();
// TODO: create usefull mediasource...something like internal mediasource.default or so
MediaSource = new MediaSource();
MediaSource = MediaSource.GetAvailableMediaSources()[0];
}
public MediaLibrary(MediaSource setSource)

View File

@ -84,15 +84,11 @@ namespace ANX.Framework.Media
}
#endregion
#region Queue (TODO)
public static MediaQueue Queue
{
get
{
throw new NotImplementedException();
}
get;
private set;
}
#endregion
#region State (TODO)
public static MediaState State
@ -128,20 +124,21 @@ namespace ANX.Framework.Media
#region Constructor
static MediaPlayer()
{
Queue = new MediaQueue();
}
#endregion
#region Play (TODO)
#region Play
public static void Play(Song song)
{
throw new NotImplementedException();
Queue.Play(song);
}
#endregion
#region Play (TODO)
#region Play
public static void Play(SongCollection songCollection)
{
throw new NotImplementedException();
Queue.Play(songCollection);
}
#endregion
@ -173,17 +170,17 @@ namespace ANX.Framework.Media
}
#endregion
#region MoveNext (TODO)
#region MoveNext
public static void MoveNext()
{
throw new NotImplementedException();
Queue.MoveNext();
}
#endregion
#region MovePrevious (TODO)
#region MovePrevious
public static void MovePrevious()
{
throw new NotImplementedException();
Queue.MovePrevious();
}
#endregion

View File

@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
// This file is part of the ANX.Framework created by the
// "ANX.Framework developer group" and released under the Ms-PL license.
@ -8,31 +9,30 @@ namespace ANX.Framework.Media
{
public sealed class MediaQueue
{
#region Private
private List<Song> queue;
#endregion
#region Public
public int Count
{
get
{
throw new NotImplementedException();
return queue.Count;
}
}
public int ActiveSongIndex
{
get
{
throw new NotImplementedException();
}
set
{
throw new NotImplementedException();
}
get;
set;
}
public Song ActiveSong
{
get
{
throw new NotImplementedException();
return queue[ActiveSongIndex];
}
}
@ -40,7 +40,53 @@ namespace ANX.Framework.Media
{
get
{
throw new NotImplementedException();
return queue[index];
}
}
#endregion
#region Constructor
internal MediaQueue()
{
queue = new List<Song>();
}
#endregion
internal void Play(Song song)
{
if (song == null)
throw new ArgumentNullException("song");
queue.Add(song);
}
internal void Play(SongCollection songCollection)
{
if (songCollection == null)
throw new ArgumentNullException("songCollection");
queue.AddRange(songCollection);
}
internal void MoveNext()
{
if (Count > 0)
{
if (ActiveSongIndex < Count - 1)
ActiveSongIndex++;
else
ActiveSongIndex = 0;
}
}
internal void MovePrevious()
{
if (Count > 0)
{
if (ActiveSongIndex > 0)
ActiveSongIndex--;
else
ActiveSongIndex = Count - 1;
}
}
}

View File

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using ANX.Framework.NonXNA;
// This file is part of the ANX.Framework created by the
// "ANX.Framework developer group" and released under the Ms-PL license.
@ -9,30 +10,40 @@ namespace ANX.Framework.Media
{
public sealed class MediaSource
{
#region Public
public string Name
{
get
{
throw new NotImplementedException();
}
get;
private set;
}
public MediaSourceType MediaSourceType
{
get
{
throw new NotImplementedException();
}
get;
private set;
}
#endregion
public IList<MediaSource> GetAvailableMediaSources()
#region Constructor
internal MediaSource(string setName, MediaSourceType setType)
{
throw new NotImplementedException();
Name = setName;
MediaSourceType = setType;
}
#endregion
#region Constructor
public static IList<MediaSource> GetAvailableMediaSources()
{
return AddInSystemFactory.DefaultPlatformCreator.GetAvailableMediaSources();
}
#endregion
#region ToString
public override string ToString()
{
throw new NotImplementedException();
return Name;
}
#endregion
}
}

View File

@ -1,18 +1,15 @@
#region Using Statements
using System;
#endregion // Using Statements
// This file is part of the ANX.Framework created by the
// "ANX.Framework developer group" and released under the Ms-PL license.
// For details see: http://anxframework.codeplex.com/license
namespace ANX.Framework.Media
{
[Flags]
public enum MediaSourceType
{
LocalDevice = 0,
WindowsMediaConnect = 4,
}
[Flags]
public enum MediaSourceType
{
LocalDevice = 0,
WindowsMediaConnect = 4,
}
}

View File

@ -1,19 +1,16 @@
#region Using Statements
using System;
#endregion // Using Statements
// This file is part of the ANX.Framework created by the
// "ANX.Framework developer group" and released under the Ms-PL license.
// For details see: http://anxframework.codeplex.com/license
namespace ANX.Framework.Media
{
[Flags]
public enum MediaState
{
Stopped = 0,
Playing = 1,
Paused = 2,
}
[Flags]
public enum MediaState
{
Stopped = 0,
Playing = 1,
Paused = 2,
}
}

View File

@ -11,10 +11,8 @@ namespace ANX.Framework.Media
{
public bool IsDisposed
{
get
{
throw new NotImplementedException();
}
get;
private set;
}
public string Name
@ -57,10 +55,17 @@ namespace ANX.Framework.Media
}
}
#region Constructor
private Picture()
{
IsDisposed = false;
}
~Picture()
{
Dispose();
}
#endregion
public Stream GetImage()
{
@ -79,32 +84,45 @@ namespace ANX.Framework.Media
public override bool Equals(object obj)
{
throw new NotImplementedException();
if (obj is Picture)
return Equals(obj as Picture);
return base.Equals(obj);
}
public void Dispose()
{
throw new NotImplementedException();
if (IsDisposed == false)
{
IsDisposed = true;
throw new NotImplementedException();
}
}
#region ToString
public override string ToString()
{
throw new NotImplementedException();
return Name;
}
#endregion
#region GetHashCode
public override int GetHashCode()
{
throw new NotImplementedException();
return Name.GetHashCode();
}
#endregion
#region Operator overloading
public static bool operator ==(Picture first, Picture second)
{
throw new NotImplementedException();
return first.Equals(second);
}
public static bool operator !=(Picture first, Picture second)
{
throw new NotImplementedException();
return first.Equals(second) == false;
}
#endregion
}
}

View File

@ -10,10 +10,8 @@ namespace ANX.Framework.Media
{
public bool IsDisposed
{
get
{
throw new NotImplementedException();
}
get;
private set;
}
public string Name
@ -48,10 +46,17 @@ namespace ANX.Framework.Media
}
}
#region Constructor
private PictureAlbum()
{
IsDisposed = false;
}
~PictureAlbum()
{
Dispose();
}
#endregion
public bool Equals(PictureAlbum other)
{
@ -60,32 +65,45 @@ namespace ANX.Framework.Media
public override bool Equals(object obj)
{
throw new NotImplementedException();
if (obj is PictureAlbum)
return Equals(obj as PictureAlbum);
return base.Equals(obj);
}
public void Dispose()
{
throw new NotImplementedException();
if (IsDisposed == false)
{
IsDisposed = true;
throw new NotImplementedException();
}
}
#region ToString
public override string ToString()
{
throw new NotImplementedException();
return Name;
}
#endregion
#region GetHashCode
public override int GetHashCode()
{
throw new NotImplementedException();
return Name.GetHashCode();
}
#endregion
#region Operator overloading
public static bool operator ==(PictureAlbum first, PictureAlbum second)
{
throw new NotImplementedException();
return first.Equals(second);
}
public static bool operator !=(PictureAlbum first, PictureAlbum second)
{
throw new NotImplementedException();
return first.Equals(second) == false;
}
#endregion
}
}

View File

@ -8,8 +8,7 @@ using System.Collections.Generic;
namespace ANX.Framework.Media
{
public sealed class PictureAlbumCollection
: IEnumerable<PictureAlbum>, IEnumerable, IDisposable
public sealed class PictureAlbumCollection : IEnumerable<PictureAlbum>, IEnumerable, IDisposable
{
private List<PictureAlbum> pictureAlbums;
@ -35,7 +34,7 @@ namespace ANX.Framework.Media
}
}
public PictureAlbumCollection()
internal PictureAlbumCollection()
{
pictureAlbums = new List<PictureAlbum>();
IsDisposed = false;

View File

@ -8,8 +8,7 @@ using System.Collections.Generic;
namespace ANX.Framework.Media
{
public sealed class PictureCollection
: IEnumerable<Picture>, IEnumerable, IDisposable
public sealed class PictureCollection : IEnumerable<Picture>, IEnumerable, IDisposable
{
private List<Picture> pictures;
@ -35,7 +34,7 @@ namespace ANX.Framework.Media
}
}
public PictureCollection()
internal PictureCollection()
{
pictures = new List<Picture>();
IsDisposed = false;

View File

@ -38,14 +38,17 @@ namespace ANX.Framework.Media
}
}
internal Playlist()
#region Constructor
private Playlist()
{
IsDisposed = false;
}
~Playlist()
{
Dispose();
}
#endregion
public bool Equals(Playlist other)
{
@ -69,16 +72,21 @@ namespace ANX.Framework.Media
}
}
#region ToString
public override string ToString()
{
return Name;
}
#endregion
#region GetHashCode
public override int GetHashCode()
{
return Name.GetHashCode();
}
#endregion
#region Operator overloading
public static bool operator ==(Playlist first, Playlist second)
{
return first.Equals(second);
@ -88,5 +96,6 @@ namespace ANX.Framework.Media
{
return first.Equals(second) == false;
}
#endregion
}
}

View File

@ -35,7 +35,7 @@ namespace ANX.Framework.Media
}
}
public PlaylistCollection()
internal PlaylistCollection()
{
playlists = new List<Playlist>();
IsDisposed = false;

View File

@ -10,10 +10,8 @@ namespace ANX.Framework.Media
{
public bool IsDisposed
{
get
{
throw new NotImplementedException();
}
get;
private set;
}
public string Name
@ -96,10 +94,17 @@ namespace ANX.Framework.Media
}
}
#region Constructor
private Song()
{
IsDisposed = false;
}
~Song()
{
Dispose();
}
#endregion
public Song FromUri(string name, Uri uri)
{
@ -113,32 +118,45 @@ namespace ANX.Framework.Media
public override bool Equals(object obj)
{
throw new NotImplementedException();
if (obj is Song)
return Equals(obj as Song);
return base.Equals(obj);
}
public void Dispose()
{
throw new NotImplementedException();
if (IsDisposed == false)
{
IsDisposed = true;
throw new NotImplementedException();
}
}
#region ToString
public override string ToString()
{
throw new NotImplementedException();
return Name;
}
#endregion
#region GetHashCode
public override int GetHashCode()
{
throw new NotImplementedException();
return Name.GetHashCode();
}
#endregion
#region Operator overloading
public static bool operator ==(Song first, Song second)
{
throw new NotImplementedException();
return first.Equals(second);
}
public static bool operator !=(Song first, Song second)
{
throw new NotImplementedException();
return first.Equals(second) == false;
}
#endregion
}
}

View File

@ -35,7 +35,7 @@ namespace ANX.Framework.Media
}
}
public SongCollection()
internal SongCollection()
{
songs = new List<Song>();
IsDisposed = false;

View File

@ -11,10 +11,8 @@ namespace ANX.Framework.Media
{
public bool IsDisposed
{
get
{
throw new NotImplementedException();
}
get;
private set;
}
public TimeSpan PlayPosition
@ -65,6 +63,11 @@ namespace ANX.Framework.Media
}
}
public VideoPlayer()
{
IsDisposed = false;
}
~VideoPlayer()
{
Dispose();
@ -72,7 +75,11 @@ namespace ANX.Framework.Media
public void Dispose()
{
throw new NotImplementedException();
if (IsDisposed == false)
{
IsDisposed = true;
throw new NotImplementedException();
}
}
public void Play(Video video)

View File

@ -1,19 +1,16 @@
#region Using Statements
using System;
#endregion // Using Statements
// This file is part of the ANX.Framework created by the
// "ANX.Framework developer group" and released under the Ms-PL license.
// For details see: http://anxframework.codeplex.com/license
namespace ANX.Framework.Media
{
[Flags]
public enum VideoSoundtrackType
{
Music = 0,
Dialog = 1,
MusicAndDialog = 2,
}
[Flags]
public enum VideoSoundtrackType
{
Music = 0,
Dialog = 1,
MusicAndDialog = 2,
}
}

View File

@ -1,4 +1,6 @@
using System;
using System.Collections.Generic;
using ANX.Framework.Media;
using ANX.Framework.Storage;
// This file is part of the ANX.Framework created by the
@ -16,6 +18,8 @@ namespace ANX.Framework.NonXNA.PlatformSystem
INativeTitleContainer CreateTitleContainer();
INativeGameTimer CreateGameTimer();
INativeContentManager CreateContentManager();
INativeMediaLibrary CreateMediaPlayer();
IList<MediaSource> GetAvailableMediaSources();
}
}

View File

@ -133,10 +133,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ANX.InputDevices.Test", "In
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiRenderTarget", "Samples\MultiRenderTarget\MultiRenderTarget_Linux.csproj", "{9C9C6245-35C2-4230-8E17-9038A228227F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MediaSystems", "MediaSystems", "{6EDED295-0F32-4D05-A8EA-02F4BF89CF35}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ANX.MediaSystem.Windows.OpenAL", "MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_Linux.csproj", "{97185A92-077D-4498-8B6A-8BFF04079044}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PlatformSystems", "PlatformSystems", "{1436F7C9-29D3-4FEF-8914-10B45F13D142}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsFormsEditor", "Samples\WindowsFormsEditor\WindowsFormsEditor_Linux.csproj", "{441D953C-94C2-42FD-9917-3EB2F6E28173}"
@ -179,6 +175,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XNBInspector", "Tools\XNBIn
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ANX.InputDevices.PsVita", "InputSystems\ANX.InputDevices.PsVita\ANX.InputDevices.PsVita_Linux.csproj", "{566293A4-1187-4289-A28C-C74B499D46AA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ANX.SoundSystem.PsVita", "SoundSystems\ANX.SoundSystem.PsVita\ANX.SoundSystem.PsVita_Linux.csproj", "{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -492,16 +490,6 @@ Global
{9C9C6245-35C2-4230-8E17-9038A228227F}.Release|Mixed Platforms.Build.0 = Release|x86
{9C9C6245-35C2-4230-8E17-9038A228227F}.Release|x86.ActiveCfg = Release|x86
{9C9C6245-35C2-4230-8E17-9038A228227F}.Release|x86.Build.0 = Release|x86
{97185A92-077D-4498-8B6A-8BFF04079044}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{97185A92-077D-4498-8B6A-8BFF04079044}.Debug|Any CPU.Build.0 = Debug|Any CPU
{97185A92-077D-4498-8B6A-8BFF04079044}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{97185A92-077D-4498-8B6A-8BFF04079044}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{97185A92-077D-4498-8B6A-8BFF04079044}.Debug|x86.ActiveCfg = Debug|Any CPU
{97185A92-077D-4498-8B6A-8BFF04079044}.Release|Any CPU.ActiveCfg = Release|Any CPU
{97185A92-077D-4498-8B6A-8BFF04079044}.Release|Any CPU.Build.0 = Release|Any CPU
{97185A92-077D-4498-8B6A-8BFF04079044}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{97185A92-077D-4498-8B6A-8BFF04079044}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{97185A92-077D-4498-8B6A-8BFF04079044}.Release|x86.ActiveCfg = Release|Any CPU
{441D953C-94C2-42FD-9917-3EB2F6E28173}.Debug|Any CPU.ActiveCfg = Debug|x86
{441D953C-94C2-42FD-9917-3EB2F6E28173}.Debug|Any CPU.Build.0 = Debug|x86
{441D953C-94C2-42FD-9917-3EB2F6E28173}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
@ -679,6 +667,16 @@ Global
{566293A4-1187-4289-A28C-C74B499D46AA}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{566293A4-1187-4289-A28C-C74B499D46AA}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{566293A4-1187-4289-A28C-C74B499D46AA}.Release|x86.ActiveCfg = Release|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Debug|x86.ActiveCfg = Debug|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Release|Any CPU.Build.0 = Release|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Release|x86.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@ -722,12 +720,12 @@ Global
{566293A4-1187-4289-A28C-C74B499D46AA} = {7AD65E6B-2A48-437F-81D9-4CA9C9A85C64}
{6A582788-C4D2-410C-96CD-177F75712D65} = {5725DA44-4F5C-4E93-A957-AC5C85603EE9}
{14EF49AB-6D3F-458D-9D5C-D120B86EDD7A} = {5725DA44-4F5C-4E93-A957-AC5C85603EE9}
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94} = {5725DA44-4F5C-4E93-A957-AC5C85603EE9}
{CCB4679D-11AF-4EC6-AAA4-36619FCE70FA} = {60824BDB-AC8A-42ED-9B79-111FB44669FF}
{E4FFD875-95FC-48F2-8B6D-8483D0B71666} = {60824BDB-AC8A-42ED-9B79-111FB44669FF}
{BD648BB8-EF28-453C-B4F5-EE3C93EB4DAF} = {60824BDB-AC8A-42ED-9B79-111FB44669FF}
{6285F3EF-07DB-49C9-8CDE-A9092789FE4F} = {60824BDB-AC8A-42ED-9B79-111FB44669FF}
{32B91ACB-CC8A-4E43-A6F1-FC8F8CAA4D22} = {60824BDB-AC8A-42ED-9B79-111FB44669FF}
{97185A92-077D-4498-8B6A-8BFF04079044} = {6EDED295-0F32-4D05-A8EA-02F4BF89CF35}
{068EB2E9-963C-4E1B-8831-E25011F11FFE} = {1436F7C9-29D3-4FEF-8914-10B45F13D142}
{04F6041E-475E-4B2A-A889-6A33EABD718B} = {1436F7C9-29D3-4FEF-8914-10B45F13D142}
{2B6D0EFF-7874-495F-9226-873ED9649C60} = {1436F7C9-29D3-4FEF-8914-10B45F13D142}

View File

@ -133,10 +133,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ANX.InputDevices.Test", "In
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiRenderTarget", "Samples\MultiRenderTarget\MultiRenderTarget_PSVita.csproj", "{9C9C6245-35C2-4230-8E17-9038A228227F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MediaSystems", "MediaSystems", "{6EDED295-0F32-4D05-A8EA-02F4BF89CF35}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ANX.MediaSystem.Windows.OpenAL", "MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_PSVita.csproj", "{97185A92-077D-4498-8B6A-8BFF04079044}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PlatformSystems", "PlatformSystems", "{1436F7C9-29D3-4FEF-8914-10B45F13D142}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsFormsEditor", "Samples\WindowsFormsEditor\WindowsFormsEditor_PSVita.csproj", "{441D953C-94C2-42FD-9917-3EB2F6E28173}"
@ -179,6 +175,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XNBInspector", "Tools\XNBIn
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ANX.InputDevices.PsVita", "InputSystems\ANX.InputDevices.PsVita\ANX.InputDevices.PsVita_PSVita.csproj", "{566293A4-1187-4289-A28C-C74B499D46AA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ANX.SoundSystem.PsVita", "SoundSystems\ANX.SoundSystem.PsVita\ANX.SoundSystem.PsVita_PSVita.csproj", "{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -492,16 +490,6 @@ Global
{9C9C6245-35C2-4230-8E17-9038A228227F}.Release|Mixed Platforms.Build.0 = Release|x86
{9C9C6245-35C2-4230-8E17-9038A228227F}.Release|x86.ActiveCfg = Release|x86
{9C9C6245-35C2-4230-8E17-9038A228227F}.Release|x86.Build.0 = Release|x86
{97185A92-077D-4498-8B6A-8BFF04079044}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{97185A92-077D-4498-8B6A-8BFF04079044}.Debug|Any CPU.Build.0 = Debug|Any CPU
{97185A92-077D-4498-8B6A-8BFF04079044}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{97185A92-077D-4498-8B6A-8BFF04079044}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{97185A92-077D-4498-8B6A-8BFF04079044}.Debug|x86.ActiveCfg = Debug|Any CPU
{97185A92-077D-4498-8B6A-8BFF04079044}.Release|Any CPU.ActiveCfg = Release|Any CPU
{97185A92-077D-4498-8B6A-8BFF04079044}.Release|Any CPU.Build.0 = Release|Any CPU
{97185A92-077D-4498-8B6A-8BFF04079044}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{97185A92-077D-4498-8B6A-8BFF04079044}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{97185A92-077D-4498-8B6A-8BFF04079044}.Release|x86.ActiveCfg = Release|Any CPU
{441D953C-94C2-42FD-9917-3EB2F6E28173}.Debug|Any CPU.ActiveCfg = Debug|x86
{441D953C-94C2-42FD-9917-3EB2F6E28173}.Debug|Any CPU.Build.0 = Debug|x86
{441D953C-94C2-42FD-9917-3EB2F6E28173}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
@ -679,6 +667,16 @@ Global
{566293A4-1187-4289-A28C-C74B499D46AA}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{566293A4-1187-4289-A28C-C74B499D46AA}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{566293A4-1187-4289-A28C-C74B499D46AA}.Release|x86.ActiveCfg = Release|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Debug|x86.ActiveCfg = Debug|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Release|Any CPU.Build.0 = Release|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}.Release|x86.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@ -722,12 +720,12 @@ Global
{566293A4-1187-4289-A28C-C74B499D46AA} = {7AD65E6B-2A48-437F-81D9-4CA9C9A85C64}
{6A582788-C4D2-410C-96CD-177F75712D65} = {5725DA44-4F5C-4E93-A957-AC5C85603EE9}
{14EF49AB-6D3F-458D-9D5C-D120B86EDD7A} = {5725DA44-4F5C-4E93-A957-AC5C85603EE9}
{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94} = {5725DA44-4F5C-4E93-A957-AC5C85603EE9}
{CCB4679D-11AF-4EC6-AAA4-36619FCE70FA} = {60824BDB-AC8A-42ED-9B79-111FB44669FF}
{E4FFD875-95FC-48F2-8B6D-8483D0B71666} = {60824BDB-AC8A-42ED-9B79-111FB44669FF}
{BD648BB8-EF28-453C-B4F5-EE3C93EB4DAF} = {60824BDB-AC8A-42ED-9B79-111FB44669FF}
{6285F3EF-07DB-49C9-8CDE-A9092789FE4F} = {60824BDB-AC8A-42ED-9B79-111FB44669FF}
{32B91ACB-CC8A-4E43-A6F1-FC8F8CAA4D22} = {60824BDB-AC8A-42ED-9B79-111FB44669FF}
{97185A92-077D-4498-8B6A-8BFF04079044} = {6EDED295-0F32-4D05-A8EA-02F4BF89CF35}
{068EB2E9-963C-4E1B-8831-E25011F11FFE} = {1436F7C9-29D3-4FEF-8914-10B45F13D142}
{04F6041E-475E-4B2A-A889-6A33EABD718B} = {1436F7C9-29D3-4FEF-8914-10B45F13D142}
{2B6D0EFF-7874-495F-9226-873ED9649C60} = {1436F7C9-29D3-4FEF-8914-10B45F13D142}

View File

@ -1,9 +1,11 @@
using System;
using System.Collections.Generic;
using ANX.Framework;
using ANX.Framework.Media;
using ANX.Framework.NonXNA;
using ANX.Framework.NonXNA.PlatformSystem;
using ANX.Framework.Storage;
// This file is part of the ANX.Framework created by the
// "ANX.Framework developer group" and released under the Ms-PL license.
// For details see: http://anxframework.codeplex.com/license
@ -87,14 +89,18 @@ namespace ANX.PlatformSystem.Linux
}
#endregion
#region IPlatformSystemCreator Member
#region CreateMediaPlayer (TODO)
public INativeMediaLibrary CreateMediaPlayer()
{
throw new System.NotImplementedException();
throw new NotImplementedException();
}
#endregion
#region GetAvailableMediaSources (TODO)
public IList<MediaSource> GetAvailableMediaSources()
{
throw new NotImplementedException();
}
#endregion
}
}

View File

@ -1,4 +1,7 @@
using System;
using System.Collections.Generic;
using ANX.Framework;
using ANX.Framework.Media;
using ANX.Framework.NonXNA;
using ANX.Framework.NonXNA.PlatformSystem;
using ANX.Framework.Storage;
@ -89,14 +92,18 @@ namespace ANX.PlatformSystem.PsVita
}
#endregion
#region IPlatformSystemCreator Member
#region CreateMediaPlayer (TODO)
public INativeMediaLibrary CreateMediaPlayer()
{
throw new System.NotImplementedException();
throw new NotImplementedException();
}
#endregion
#region GetAvailableMediaSources (TODO)
public IList<MediaSource> GetAvailableMediaSources()
{
throw new NotImplementedException();
}
#endregion
}
}

View File

@ -1,4 +1,7 @@
using System;
using System.Collections.Generic;
using ANX.Framework;
using ANX.Framework.Media;
using ANX.Framework.NonXNA;
using ANX.Framework.NonXNA.PlatformSystem;
using ANX.Framework.Storage;
@ -86,14 +89,18 @@ namespace ANX.PlatformSystem.Windows
}
#endregion
#region IPlatformSystemCreator Member
#region CreateMediaPlayer (TODO)
public INativeMediaLibrary CreateMediaPlayer()
{
throw new System.NotImplementedException();
throw new NotImplementedException();
}
#endregion
#region GetAvailableMediaSources (TODO)
public IList<MediaSource> GetAvailableMediaSources()
{
throw new NotImplementedException();
}
#endregion
}
}

View File

@ -109,10 +109,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_Linux.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_Linux.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -112,10 +112,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_PSVita.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_PSVita.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -141,10 +141,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_Linux.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\RenderSystems\ANX.Framework.Windows.DX10\ANX.RenderSystem.Windows.DX10_Linux.csproj">
<Project>{5BE49183-2F6F-4527-AC90-D816911FCF90}</Project>
<Name>ANX.RenderSystem.Windows.DX10</Name>

View File

@ -144,10 +144,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_PSVita.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\RenderSystems\ANX.Framework.Windows.DX10\ANX.RenderSystem.Windows.DX10_PSVita.csproj">
<Project>{5BE49183-2F6F-4527-AC90-D816911FCF90}</Project>
<Name>ANX.RenderSystem.Windows.DX10</Name>

View File

@ -136,10 +136,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_Linux.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_Linux.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -139,10 +139,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_PSVita.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_PSVita.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -131,10 +131,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_Linux.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_Linux.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -134,10 +134,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_PSVita.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_PSVita.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -110,10 +110,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_Linux.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_Linux.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -113,10 +113,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_PSVita.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_PSVita.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -111,10 +111,6 @@
<Project>{DB88DDEB-7281-405D-8FCA-5681B6B2BD7A}</Project>
<Name>ANX.InputSystem.Recording</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_Linux.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_Linux.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -114,10 +114,6 @@
<Project>{DB88DDEB-7281-405D-8FCA-5681B6B2BD7A}</Project>
<Name>ANX.InputSystem.Recording</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_PSVita.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_PSVita.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -111,10 +111,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_Linux.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_Linux.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -114,10 +114,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_PSVita.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_PSVita.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -89,10 +89,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_Linux.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_Linux.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -92,10 +92,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_PSVita.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_PSVita.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -146,10 +146,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_Linux.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_Linux.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -149,10 +149,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_PSVita.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_PSVita.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -111,10 +111,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_Linux.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_Linux.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -114,10 +114,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_PSVita.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_PSVita.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -110,10 +110,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_Linux.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_Linux.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -113,10 +113,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_PSVita.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_PSVita.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -65,10 +65,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_Linux.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\RenderSystems\ANX.Framework.Windows.GL3\ANX.RenderSystem.Windows.GL3_Linux.csproj">
<Project>{EB8258E0-6741-4DB9-B756-1EBDF67B1ED6}</Project>
<Name>ANX.RenderSystem.Windows.GL3</Name>

View File

@ -66,10 +66,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_PSVita.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\RenderSystems\ANX.Framework.Windows.GL3\ANX.RenderSystem.Windows.GL3_PSVita.csproj">
<Project>{EB8258E0-6741-4DB9-B756-1EBDF67B1ED6}</Project>
<Name>ANX.RenderSystem.Windows.GL3</Name>

View File

@ -138,10 +138,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_Linux.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_Linux.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -141,10 +141,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_PSVita.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\PlatformSystems\ANX.PlatformSystem.Windows\ANX.PlatformSystem.Windows_PSVita.csproj">
<Project>{068EB2E9-963C-4E1B-8831-E25011F11FFE}</Project>
<Name>ANX.PlatformSystem.Windows</Name>

View File

@ -105,10 +105,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_Linux.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\RenderSystems\ANX.Framework.Windows.GL3\ANX.RenderSystem.Windows.GL3_Linux.csproj">
<Project>{EB8258E0-6741-4DB9-B756-1EBDF67B1ED6}</Project>
<Name>ANX.RenderSystem.Windows.GL3</Name>

View File

@ -106,10 +106,6 @@
<Project>{49066074-3B7B-4A55-B122-6BD33AB73558}</Project>
<Name>ANX.InputSystem.Standard</Name>
</ProjectReference>
<ProjectReference Include="..\..\MediaSystems\ANX.MediaSystem.Windows.OpenAL\ANX.MediaSystem.Windows.OpenAL_PSVita.csproj">
<Project>{97185A92-077D-4498-8B6A-8BFF04079044}</Project>
<Name>ANX.MediaSystem.Windows.OpenAL</Name>
</ProjectReference>
<ProjectReference Include="..\..\RenderSystems\ANX.Framework.Windows.GL3\ANX.RenderSystem.Windows.GL3_PSVita.csproj">
<Project>{EB8258E0-6741-4DB9-B756-1EBDF67B1ED6}</Project>
<Name>ANX.RenderSystem.Windows.GL3</Name>

View File

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{E2EE2D12-A98E-4C21-AFFA-35F48D2B2A94}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ANX.SoundSystem.PsVita</RootNamespace>
<AssemblyName>ANX.SoundSystem.PsVita</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;LINUX;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE;LINUX;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="Sce.PlayStation.Core">
<HintPath>C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\Psm\v1.0\Sce.PlayStation.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Creator.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SupportedPlatformsImpl.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\ANX.Framework\ANX.Framework_Linux.csproj">
<Project>{6899F0C9-70B9-4EB0-9DD3-E598D4BE3E35}</Project>
<Name>ANX.Framework</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.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>