Empeld
Empeld plugin documentation.
essentials.action.ItemFramework.BlockItem Class Reference
Inheritance diagram for essentials.action.ItemFramework.BlockItem:
essentials.action.ItemFramework.ItemBase pluginbase.Objects.Syncable.SyncableObject essentials.action.ItemFramework.IItem pluginbase.Objects.Syncable.SyncableBase< SyncableObject > pluginbase.Objects.Syncable.INetSyncable pluginbase.Objects.Syncable.INetWatcher essentials.action.ItemFramework.BlockStackItem essentials.action.ItemFramework.Interactive.UseableBlockItem

Public Member Functions

 BlockItem ()
 
 BlockItem (ushort blockId)
 
 BlockItem (IBlock block)
 
- Public Member Functions inherited from essentials.action.ItemFramework.ItemBase
 ItemBase ()
 
override string ToString ()
 
- Public Member Functions inherited from pluginbase.Objects.Syncable.INetSyncable
void ResetWatch ()
 Resets the watch. Overridable to reset all sub-items More...
 
void EncodeTo (BinaryWriter writer, EncodeContext context)
 Encodes to. More...
 
void DecodeFrom (BinaryReader reader, DecodeContext context)
 Decodes from. More...
 
void Persist (IPersistObject obj)
 Persist the network object to a persist object More...
 
void Load (IReadPersistObject obj)
 Load the network object from a persist object More...
 
- Public Member Functions inherited from pluginbase.Objects.Syncable.INetWatcher
void Touch ()
 Touch the class, signalling that a change ocurred More...
 
void TouchRecurse ()
 Touches a class and any sub-classes it may have More...
 

Protected Member Functions

override Bitmap LoadIcon ()
 Loads the bitmap representing the image of the item More...
 
- Protected Member Functions inherited from essentials.action.ItemFramework.ItemBase
virtual IReadonlyModel LoadModel ()
 Loads the mesh representing the model in-world More...
 
- Protected Member Functions inherited from pluginbase.Objects.Syncable.SyncableObject
 SyncableObject ()
 Initializes a new instance of the pluginbase.Objects.Syncable.SyncableObject class. More...
 
sealed override void ResetWatch ()
 Reset variables watched status More...
 
sealed override void TouchRecurse ()
 Touch self, including all children of this syncable object More...
 
sealed override void EncodeTo (BinaryWriter writer, EncodeContext context)
 Encode changes to binary data More...
 
sealed override void DecodeFrom (BinaryReader reader, DecodeContext context)
 Decode changes from binary data More...
 
sealed override void Persist (IPersistObject obj)
 Build up a persistant object for this syncable, including all sync children and persist objects More...
 
sealed override void Load (IReadPersistObject obj)
 Load a given persistent object back into this instance More...
 
- Protected Member Functions inherited from pluginbase.Objects.Syncable.SyncableBase< SyncableObject >
void Touch ()
 Touch the instance, notifying something has changed More...
 
virtual void OnChanged ()
 Raises the changed event. More...
 
abstract void Persist (IPersistObject obj)
 Persist the instance to a persist object More...
 
abstract void Load (IReadPersistObject obj)
 Load the instance from a persist object More...
 

Protected Attributes

IBlockLookup BlockManager
 
IResourceResolver ResourceResolver
 
override float ModelSize => 0.2f
 
- Protected Attributes inherited from essentials.action.ItemFramework.ItemBase
readonly IModelFactory ModelFactory
 
readonly IPluginLogger Logger
 
virtual float ModelSize => 0.5f
 Size to render the model More...
 
virtual Matrix4 ModelTransform => null
 How to transform the generated model (Only impacts generated meshes, not loaded models) More...
 
virtual ItemRenderMode ItemRenderMode => ItemRenderMode.Meshalizer
 How the item is rendered when dropped (ItemDropEntity) More...
 

Properties

ushort BlockId [get]
 
IBlock Block [get]
 
override string Name [get]
 
override string Icon [get]
 
override ItemRenderMode ItemRenderMode [get]
 
- Properties inherited from essentials.action.ItemFramework.ItemBase
abstract string Icon [get]
 Gets the path to the icon More...
 
abstract string Name [get]
 Gets the name of the item More...
 
virtual string IconLabel [get]
 
virtual string Description [get]
 
virtual string MeshResource [get]
 
virtual string ModelImage [get]
 
virtual int MeshalizerResolution [get]
 
virtual float MeshalizerDepth [get]
 
virtual string ModelCacheKey [get]
 
virtual bool ShowNameplate [get]
 
virtual bool Bounce [get]
 
virtual bool AutoDespawn [get]
 
virtual TimeSpan AutoDespawnDelay [get]
 
virtual bool HasGravity [get]
 
virtual double ViewDistance [get]
 
- Properties inherited from pluginbase.Objects.Syncable.SyncableObject
virtual ushort NetOwnerId [get]
 Gets the network owner of this object (user id) More...
 
- Properties inherited from essentials.action.ItemFramework.IItem
string Name [get]
 The human-readable name of the item More...
 
string IconLabel [get]
 Gets the wording that can appear over a icon More...
 
bool ShowNameplate [get]
 Whether or not to show the nameplate above the item More...
 
bool Bounce [get]
 Whether or not the item should bounce in the world More...
 
bool AutoDespawn [get]
 Whether or not the item should be subject to auto-despawn More...
 
TimeSpan AutoDespawnDelay [get]
 The amount of time the auto despawn will take, if set (Overrides global default) More...
 
bool HasGravity [get]
 Whether or not gravity affects the item More...
 
double ViewDistance [get]
 The distance from which the dropped item can be viewed More...
 
- Properties inherited from pluginbase.Objects.Syncable.INetSyncable
INetWatcher Watcher [get, set]
 Who is watching (who to inform of a change) More...
 
bool Modified [get]
 Gets a value indicating whether this pluginbase.Objects.Syncable.INetSyncable is modified. More...
 

Additional Inherited Members

- Events inherited from pluginbase.Objects.Syncable.SyncableBase< SyncableObject >
Action< T > Changed
 Event triggered when any change occurs on this object, either locally or over the network More...
 
Action< T > NetUpdate
 Event triggered when a change occurs resulting from a change over the network More...
 
Action< T > Touched
 Event occurs only when an object is first touched. Usually the first instance of a local-change More...
 

Constructor & Destructor Documentation

◆ BlockItem() [1/3]

essentials.action.ItemFramework.BlockItem.BlockItem ( )
25  {
26  this.InjectDependencies();
27  }

◆ BlockItem() [2/3]

essentials.action.ItemFramework.BlockItem.BlockItem ( ushort  blockId)
30  :this()
31  {
32  this._blockIdSync.Value = blockId;
33  }

◆ BlockItem() [3/3]

essentials.action.ItemFramework.BlockItem.BlockItem ( IBlock  block)
36  :this()
37  {
38  this._blockIdSync.Value = block.Id;
39  }
ushort Id
Id that represent the block type (usually hash of InternalName)
Definition: IBlock.cs:32

Member Function Documentation

◆ LoadIcon()

override Bitmap essentials.action.ItemFramework.BlockItem.LoadIcon ( )
protectedvirtual

Loads the bitmap representing the image of the item

Returns
The icon.

Reimplemented from essentials.action.ItemFramework.ItemBase.

82  {
83  this.Logger.LogInfo("Generating inventory icon for '{0}'...", this.Name);
84  const int ICON_SIZE = 64;
85 
86  switch(this.Block.IconMode)
87  {
88  case BlockIconMode.Flat:
89  using(var img = new Bitmap(this.ResourceResolver.OpenRead(this.Icon)))
90  {
91  return ResizeBitmap(img, ICON_SIZE, ICON_SIZE);
92  }
93  case BlockIconMode.Default:
94  default:
95  return GetCubeifiedTexture(this.Icon, ICON_SIZE);
96  }
97  }
BlockIconMode
An enumeration representing how a block is to be rendered
Definition: BlockIconMode.cs:8
override string Name
Definition: BlockItem.cs:55
readonly IPluginLogger Logger
Definition: ItemBase.cs:23
Stream OpenRead(string module, string resource)
Opens a file for reading
IBlock Block
Definition: BlockItem.cs:47
override string Icon
Definition: BlockItem.cs:63
IResourceResolver ResourceResolver
Definition: BlockItem.cs:19
void LogInfo(string msg, params object[] args)
BlockIconMode IconMode
Gets the icon mode for how the resoruce is rendered
Definition: IBlock.cs:194

Member Data Documentation

◆ BlockManager

IBlockLookup essentials.action.ItemFramework.BlockItem.BlockManager
protected

Attribute: Dependency

◆ ModelSize

override float essentials.action.ItemFramework.BlockItem.ModelSize => 0.2f
protected

◆ ResourceResolver

IResourceResolver essentials.action.ItemFramework.BlockItem.ResourceResolver
protected

Attribute: Dependency

Property Documentation

◆ Block

IBlock essentials.action.ItemFramework.BlockItem.Block
get

◆ BlockId

ushort essentials.action.ItemFramework.BlockItem.BlockId
get

◆ Icon

override string essentials.action.ItemFramework.BlockItem.Icon
getprotected

◆ ItemRenderMode

override ItemRenderMode essentials.action.ItemFramework.BlockItem.ItemRenderMode
getprotected

◆ Name

override string essentials.action.ItemFramework.BlockItem.Name
get

The documentation for this class was generated from the following file: