Files
juanjp600 4d225c65f2 Updated to MonoGame 3.6 + Directory refactor
- Barotrauma's projects are in the Barotrauma directory
- All libraries are in the Libraries directory
- MonoGame is now managed by NuGet, rather than referenced from the installed files (TODO: consider using PCL for easier cross-platform development?)
- NuGet libraries are not included in the repo, as getting the latest versions automatically should be preferred
- Removed Content/effects.mgfx as it didn't seem to be used anywhere
- Removed some references to Subsurface directory
- Renamed Launcher2 to Launcher
2017-06-27 09:52:57 -03:00

268 lines
5.1 KiB
C#

#region MIT License
/*Copyright (c) 2012-2013, 2016 Robert Rouhani <robert.rouhani@gmail.com>
SharpFont based on Tao.FreeType, Copyright (c) 2003-2007 Tao Framework Team
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.*/
#endregion
using System;
using System.Linq;
using System.Runtime.InteropServices;
using SharpFont.PostScript.Internal;
namespace SharpFont.PostScript
{
/// <summary>
/// A structure used to represent CID Face information.
/// </summary>
public class FaceInfo
{
#region Fields
private IntPtr reference;
private FaceInfoRec rec;
#endregion
#region Constructors
internal FaceInfo(IntPtr reference)
{
Reference = reference;
}
#endregion
#region Properties
/// <summary>
/// The name of the font, usually condensed from FullName.
/// </summary>
public string CidFontName
{
get
{
return rec.cid_font_name;
}
}
/// <summary>
/// The version number of the font.
/// </summary>
public int CidVersion
{
get
{
return (int)rec.cid_version;
}
}
/// <summary>
/// Gets the string identifying the font's manufacturer.
/// </summary>
public string Registry
{
get
{
return rec.registry;
}
}
/// <summary>
/// Gets the unique identifier for the character collection.
/// </summary>
public string Ordering
{
get
{
return rec.ordering;
}
}
/// <summary>
/// Gets the identifier (supplement number) of the character collection.
/// </summary>
public int Supplement
{
get
{
return rec.supplement;
}
}
/// <summary>
/// Gets the dictionary of font info that is not used by the PostScript interpreter.
/// </summary>
public FontInfo FontInfo
{
get
{
return new FontInfo(rec.font_info);
}
}
/// <summary>
/// Gets the coordinates of the corners of the bounding box.
/// </summary>
public BBox FontBBox
{
get
{
return rec.font_bbox;
}
}
/// <summary>
/// Gets the value to form UniqueID entries for base fonts within a composite font.
/// </summary>
[CLSCompliant(false)]
public uint UidBase
{
get
{
return (uint)rec.uid_base;
}
}
/// <summary>
/// Gets the number of entries in the XUID array.
/// </summary>
public int XuidCount
{
get
{
return rec.num_xuid;
}
}
/// <summary>
/// Gets the extended unique IDS that identify the form, which allows
/// the PostScript interpreter to cache the output for reuse.
/// </summary>
[CLSCompliant(false)]
public uint[] Xuid
{
get
{
return rec.xuid.Select(x => (uint)x).ToArray();
}
}
/// <summary>
/// Gets the offset in bytes to the charstring offset table.
/// </summary>
[CLSCompliant(false)]
public uint CidMapOffset
{
get
{
return (uint)rec.cidmap_offset;
}
}
/// <summary>
/// Gets the length in bytes of the FDArray index.
/// A value of 0 indicates that the charstring offset table doesn't contain
/// any FDArray indexes.
/// </summary>
public int FDBytes
{
get
{
return rec.fd_bytes;
}
}
/// <summary>
/// Gets the length of the offset to the charstring for each CID in the CID font.
/// </summary>
public int GDBytes
{
get
{
return rec.gd_bytes;
}
}
/// <summary>
/// Gets the number of valid CIDs in the CIDFont.
/// </summary>
[CLSCompliant(false)]
public uint CidCount
{
get
{
return (uint)rec.cid_count;
}
}
/// <summary>
/// Gets the number of entries in the FontDicts array.
/// </summary>
public int DictsCount
{
get
{
return rec.num_dicts;
}
}
/// <summary>
/// Gets the set of font dictionaries for this font.
/// </summary>
public FaceDict FontDicts
{
get
{
return new FaceDict(PInvokeHelper.AbsoluteOffsetOf<FaceInfoRec>(Reference, "font_dicts"));
}
}
/// <summary>
/// The offset of the data.
/// </summary>
[CLSCompliant(false)]
public uint DataOffset
{
get
{
return (uint)rec.data_offset;
}
}
internal IntPtr Reference
{
get
{
return reference;
}
set
{
reference = value;
rec = PInvokeHelper.PtrToStructure<FaceInfoRec>(reference);
}
}
#endregion
}
}