subcommands

package
v1.52.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 21, 2025 License: GPL-3.0 Imports: 42 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type CaptureCMD

type CaptureCMD struct{}

func (CaptureCMD) Description added in v1.45.1

func (CaptureCMD) Description() string

func (CaptureCMD) Name

func (CaptureCMD) Name() string

func (CaptureCMD) Run added in v1.45.1

func (CaptureCMD) Run(ctx context.Context, settings any) error

func (CaptureCMD) Settings added in v1.45.1

func (CaptureCMD) Settings() any

type CaptureSettings added in v1.45.1

type CaptureSettings struct {
	ProxySettings proxy.ProxySettings
}

type ChatLogCMD added in v1.24.12

type ChatLogCMD struct {
	ServerAddress     string
	Verbose           bool
	EnableClientCache bool
}

func (ChatLogCMD) Description added in v1.45.1

func (ChatLogCMD) Description() string

func (ChatLogCMD) Name added in v1.24.12

func (ChatLogCMD) Name() string

func (ChatLogCMD) Run added in v1.45.1

func (ChatLogCMD) Run(ctx context.Context, settings any) error

func (ChatLogCMD) Settings added in v1.45.1

func (ChatLogCMD) Settings() any

type ChatLogSettings added in v1.45.1

type ChatLogSettings struct {
	ProxySettings proxy.ProxySettings

	Verbose bool `opt:"Verbose" flag:"verbose"`
}

type DebugProxyCMD

type DebugProxyCMD struct{}

func (DebugProxyCMD) Description added in v1.45.1

func (DebugProxyCMD) Description() string

func (DebugProxyCMD) Name

func (DebugProxyCMD) Name() string

func (DebugProxyCMD) Run added in v1.45.1

func (DebugProxyCMD) Run(ctx context.Context, settings any) error

func (DebugProxyCMD) Settings added in v1.45.1

func (DebugProxyCMD) Settings() any

type DebugProxySettings added in v1.45.1

type DebugProxySettings struct {
	ProxySettings proxy.ProxySettings
}

type MergeCMD

type MergeCMD struct{}

func (MergeCMD) Description added in v1.45.1

func (MergeCMD) Description() string

func (MergeCMD) Name

func (MergeCMD) Name() string

func (MergeCMD) Run added in v1.45.1

func (c MergeCMD) Run(ctx context.Context, settings any) error

func (MergeCMD) Settings added in v1.45.1

func (MergeCMD) Settings() any

type MergeSettings added in v1.45.1

type MergeSettings struct {
	Bounds      bool     `opt:"Show Bounds" flag:"bounds"`
	OutPath     string   `opt:"Out Path" flag:"out"`
	InputWorlds []string `opt:"Input Worlds" flag:"-args"`
}

type RealmAddressCMD added in v1.28.0

type RealmAddressCMD struct{}

func (RealmAddressCMD) Description added in v1.45.1

func (RealmAddressCMD) Description() string

func (RealmAddressCMD) Name added in v1.28.0

func (RealmAddressCMD) Name() string

func (*RealmAddressCMD) Run added in v1.45.1

func (c *RealmAddressCMD) Run(ctx context.Context, settings any) error

func (RealmAddressCMD) Settings added in v1.45.1

func (RealmAddressCMD) Settings() any

type RealmAddressSettings added in v1.45.1

type RealmAddressSettings struct {
	Realm string `opt:"Realm Name" flag:"realm"`
}

type RealmListCMD added in v1.28.1

type RealmListCMD struct{}

func (RealmListCMD) Description added in v1.45.1

func (RealmListCMD) Description() string

func (RealmListCMD) Name added in v1.28.1

func (RealmListCMD) Name() string

func (RealmListCMD) Run added in v1.45.1

func (RealmListCMD) Run(ctx context.Context, settings any) error

func (RealmListCMD) Settings added in v1.45.1

func (RealmListCMD) Settings() any

type RenderCMD added in v1.45.1

type RenderCMD struct{}

func (RenderCMD) Description added in v1.45.1

func (RenderCMD) Description() string

func (RenderCMD) Name added in v1.45.1

func (RenderCMD) Name() string

func (RenderCMD) Run added in v1.45.1

func (RenderCMD) Run(ctx context.Context, settings any) error

func (RenderCMD) Settings added in v1.45.1

func (RenderCMD) Settings() any

type RenderSettings added in v1.45.1

type RenderSettings struct {
	WorldPath string `opt:"World Path" flag:"world"`
	Out       string `opt:"Output filename" flag:"out" default:"world.png"`
}

type ResourcePackCMD added in v1.28.0

type ResourcePackCMD struct{}

func (ResourcePackCMD) Description added in v1.45.1

func (ResourcePackCMD) Description() string

func (ResourcePackCMD) Name added in v1.28.0

func (ResourcePackCMD) Name() string

func (ResourcePackCMD) Run added in v1.45.1

func (ResourcePackCMD) Run(ctx context.Context, settings any) error

func (ResourcePackCMD) Settings added in v1.45.1

func (ResourcePackCMD) Settings() any

type ResourcePacksSettings added in v1.45.1

type ResourcePacksSettings struct {
	ProxySettings proxy.ProxySettings `without:"listen"`

	SaveEncrypted bool `opt:"Save Encrypted" flag:"save-encrypted"`
	OnlyKeys      bool `opt:"Only save keys" flag:"only-keys"`
	Folders       bool `opt:"Write Folders" flag:"folders"`
}

type SkinCMD added in v1.45.1

type SkinCMD struct{}

func (SkinCMD) Description added in v1.45.1

func (SkinCMD) Description() string

func (SkinCMD) Name added in v1.45.1

func (SkinCMD) Name() string

func (SkinCMD) Run added in v1.45.1

func (SkinCMD) Run(ctx context.Context, settings any) error

func (SkinCMD) Settings added in v1.45.1

func (SkinCMD) Settings() any

type SkinSettings added in v1.45.1

type SkinSettings struct {
	ProxySettings proxy.ProxySettings

	Filter      string `opt:"Name Regex (save if it matches)" flag:"filter"`
	NoProxy     bool   `opt:"No Proxy" flag:"no-proxy"`
	TextureOnly bool   `opt:"Texture Only" flag:"texture-only"`
	Timestamped bool   `opt:"Timestamped" flag:"timestamped" default:"true"`
}

type UpdateCMD

type UpdateCMD struct{}

func (UpdateCMD) Description added in v1.45.1

func (UpdateCMD) Description() string

func (UpdateCMD) Name

func (UpdateCMD) Name() string

func (*UpdateCMD) Run added in v1.45.1

func (c *UpdateCMD) Run(ctx context.Context, settings any) error

func (UpdateCMD) Settings added in v1.45.1

func (UpdateCMD) Settings() any

type WorldCMD added in v1.45.1

type WorldCMD struct{}

func (WorldCMD) Description added in v1.45.1

func (WorldCMD) Description() string

func (WorldCMD) Name added in v1.45.1

func (WorldCMD) Name() string

func (WorldCMD) Run added in v1.45.1

func (WorldCMD) Run(ctx context.Context, settings any) error

func (WorldCMD) Settings added in v1.45.1

func (WorldCMD) Settings() any

type WorldSettings added in v1.45.1

type WorldSettings struct {
	ProxySettings proxy.ProxySettings
	Void          bool     `opt:"Void Generator" flag:"void" default:"true" desc:"locale.enable_void"`
	Image         bool     `opt:"Image" flag:"image" desc:"locale.save_image"`
	Entities      bool     `opt:"Entities" flag:"save-entities" default:"true" desc:"Save Entities"`
	Inventories   bool     `opt:"Inventories" flag:"save-inventories" default:"true" desc:"Save Inventories"`
	BlockUpdates  bool     `opt:"Block Updates" flag:"block-updates" desc:"Block updates"`
	EntityCulling bool     `opt:"Entity Culling" flag:"entity-culling" desc:"Remove Entities which died or are deleted (experimental)"`
	ExcludeMobs   []string `opt:"Exclude Mobs" flag:"exclude-mobs" desc:"list of mobs to exclude seperated by comma"`
	ChunkRadius   int      `opt:"Chunk Radius" flag:"chunk-radius" desc:"the max chunk radius to force"`
	ScriptPath    string   `opt:"Script Path" flag:"script" desc:"path to script to use" type:"file,js"`
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL