Difference between revisions of "SourceMod SDK"

From AlliedModders Wiki
Jump to: navigation, search
m
Line 9: Line 9:
 
**'''ultraedit''': Drop-in syntax highlighting for [http://www.ultraedit.com/ UltraEdit/UEStudio]
 
**'''ultraedit''': Drop-in syntax highlighting for [http://www.ultraedit.com/ UltraEdit/UEStudio]
 
*'''extensions''': Publicly open-sourced extensions.
 
*'''extensions''': Publicly open-sourced extensions.
**'''batsupport''': Implementation of the [[AdminInterface (SourceMM)|BAT AdminInterface]].
 
 
**'''geoip''': GeoIP extension.
 
**'''geoip''': GeoIP extension.
 
**'''threader''': Threading extension.
 
**'''threader''': Threading extension.
Line 26: Line 25:
 
=Further Reading=
 
=Further Reading=
 
*For writing extensions, see [[Writing Extensions]].
 
*For writing extensions, see [[Writing Extensions]].
*For live doxygen, see [http://www.sourcemod.net/sdk/dox/ Live Doxygen].
+
*For documentation, see [http://doc.sourcemod.net/ http://doc.sourcemod.net/].
 
*For the nightly source code tree, see [http://hg.alliedmods.net/sourcemod-central/summary SourceMod Central].
 
*For the nightly source code tree, see [http://hg.alliedmods.net/sourcemod-central/summary SourceMod Central].
*For the SDK homepage, see [http://www.sourcemod.net/sdk.php http://www.sourcemod.net/sdk.php]
 
  
 
[[Category:SourceMod Development]]
 
[[Category:SourceMod Development]]

Revision as of 07:03, 4 May 2009

The SourceMod SDK is the Software Development Kit for writing SourceMod Extensions and Plugins. This article briefly introduces it.

Directory Structure

  • configs: Configuration files that SourceMod uses
  • editor: Editor related files
  • extensions: Publicly open-sourced extensions.
    • geoip: GeoIP extension.
    • threader: Threading extension.
  • plugins: SourceMod plugin implementations.
    • include: Include files and their documentation.
  • public: Public interface files.
    • doxygen: The SDK Doxygen file.
    • extensions: Public interface files that come from extensions.
    • licenses: License information.
    • sample_ext: A sample extension.
    • sourcepawn: SourcePawn header files.
  • sourcepawn: SourcePawn files.
    • compiler: SourcePawn compiler source code.
  • translations: Translation files.

Further Reading