/* * OpenClonk, http://www.openclonk.org * * Copyright (c) 2005-2009, RedWolf Design GmbH, http://www.clonk.de/ * Copyright (c) 2009-2013, The OpenClonk Team and contributors * * Distributed under the terms of the ISC license; see accompanying file * "COPYING" for details. * * "Clonk" is a registered trademark of Matthes Bender, used with permission. * See accompanying file "TRADEMARK" for details. * * To redistribute this file separately, substitute the full license texts * for the above references. */ // Startup screen for non-parameterized engine start: Player selection dialog // Also contains player creation, editing and crew management #ifndef INC_C4StartupPlrSelDlg #define INC_C4StartupPlrSelDlg #include #include "C4Startup.h" #include "C4InfoCore.h" // startup dialog: Player selection class C4StartupPlrSelDlg : public C4StartupDlg { private: enum Mode { PSDM_Player=0, PSDM_Crew }; // player selection list, or crew editing mode enum { IconLabelSpacing = 2 }; // space between an icon and its text private: // one item in the player or crew list class ListItem : public C4GUI::Control { private: typedef C4GUI::Window BaseClass; // subcomponents protected: C4GUI::CheckBox *pCheck; // check box to mark participation C4GUI::Label *pNameLabel; // item caption class C4StartupPlrSelDlg *pPlrSelDlg; C4GUI::Icon *pIcon; // item icon private: class C4KeyBinding *pKeyCheck; // space activates/deactivates selected player StdStrBuf Filename; // file info was loaded from public: ListItem(C4StartupPlrSelDlg *pForDlg, C4GUI::ListBox *pForListBox, C4GUI::Element *pInsertBeforeElement=NULL, bool fActivated=false); const C4FacetSurface &GetIconFacet() const { return pIcon->GetFacet(); } virtual ~ListItem(); protected: virtual C4GUI::ContextMenu *ContextMenu() = 0; C4GUI::ContextMenu *ContextMenu(C4GUI::Element *pEl, int32_t iX, int32_t iY) { return ContextMenu(); } virtual void UpdateOwnPos(); // recalculate item positioning bool KeyCheck() { pCheck->ToggleCheck(true); return true; } virtual bool IsFocusOnClick() { return false; } // do not focus; keep focus on listbox void SetName(const char *szNewName); void SetIcon(C4GUI::Icons icoNew); void SetFilename(const StdStrBuf &sNewFN); public: ListItem *GetNext() const { return static_cast(BaseClass::GetNext()); } virtual uint32_t GetColorDw() const = 0; // get drawing color for portrait bool IsActivated() const { return pCheck->GetChecked(); } void SetActivated(bool fToVal) { pCheck->SetChecked(fToVal); } const char *GetName() const; virtual void SetSelectionInfo(C4GUI::TextWindow *pSelectionInfo) = 0; // clears text field and writes selection info text into it const StdStrBuf &GetFilename() const { return Filename; } virtual StdStrBuf GetDelWarning() = 0; void GrabIcon(C4FacetSurface &rFromFacet); virtual bool CheckNameHotkey(const char * c); // return whether this item can be selected by entering given char class LoadError : public StdStrBuf { public: LoadError(StdStrBuf RREF rTakeFrom) { Take(std::move(rTakeFrom)); } }; // class thrown off load function if load failed }; public: // a list item when in player selection mode class PlayerListItem : public ListItem { private: C4PlayerInfoCore Core; // player info core loaded from player file bool fHasCustomIcon; // set for players with a BigIcon.png public: PlayerListItem(C4StartupPlrSelDlg *pForDlg, C4GUI::ListBox *pForListBox, C4GUI::Element *pInsertBeforeElement=NULL, bool fActivated=false); ~PlayerListItem() {} void Load(const StdStrBuf &rsFilename); // may throw LoadError protected: virtual C4GUI::ContextMenu *ContextMenu(); public: const C4PlayerInfoCore &GetCore() const { return Core; } void UpdateCore(C4PlayerInfoCore & NewCore); // Save Core to disk and update this item void GrabCustomIcon(C4FacetSurface &fctGrabFrom); virtual void SetSelectionInfo(C4GUI::TextWindow *pSelectionInfo); virtual uint32_t GetColorDw() const { return Core.PrefColorDw; } virtual StdStrBuf GetDelWarning(); bool MoveFilename(const char *szToFilename); // change filename to given }; private: // a list item when in crew editing mode class CrewListItem : public ListItem { private: bool fLoaded; C4ObjectInfoCore Core; uint32_t dwPlrClr; C4Group *pParentGrp; public: CrewListItem(C4StartupPlrSelDlg *pForDlg, C4GUI::ListBox *pForListBox, uint32_t dwPlrClr); ~CrewListItem() {} void Load(C4Group &rGrp, const StdStrBuf &rsFilename); // may throw LoadError protected: virtual C4GUI::ContextMenu *ContextMenu(); void RewriteCore(); struct RenameParams { }; void AbortRenaming(RenameParams par); C4GUI::RenameEdit::RenameResult DoRenaming(RenameParams par, const char *szNewName); public: void UpdateClonkEnabled(); virtual uint32_t GetColorDw() const { return dwPlrClr; }; // get drawing color for portrait virtual void SetSelectionInfo(C4GUI::TextWindow *pSelectionInfo); // clears text field and writes selection info text into it virtual StdStrBuf GetDelWarning(); const C4ObjectInfoCore &GetCore() const { return Core; } CrewListItem *GetNext() const { return static_cast(ListItem::GetNext()); } void CrewRename(); // shows the edit-field to rename a crew member bool SetName(const char *szNewName); // update clonk name and core void OnDeathMessageCtx(C4GUI::Element *el); void OnDeathMessageSet(const StdStrBuf &rsNewMessage); }; public: C4StartupPlrSelDlg(); // ctor ~C4StartupPlrSelDlg(); // dtor private: class C4KeyBinding *pKeyBack, *pKeyProperties, *pKeyCrew, *pKeyDelete, *pKeyRename, *pKeyNew; class C4GUI::ListBox *pPlrListBox; C4GUI::TextWindow *pSelectionInfo; Mode eMode; // in crew mode: struct CurrPlayer_t { C4PlayerInfoCore Core; // loaded player main core C4Group Grp; // group to player file; opened when in crew mode } CurrPlayer; private: C4Rect rcBottomButtons; int32_t iBottomButtonWidth; class C4GUI::Button *btnActivatePlr, *btnCrew, *btnProperties, *btnDelete, *btnBack, *btnNew; void UpdateBottomButtons(); // update command button texts and positions void UpdatePlayerList(); // refill pPlrListBox with players in player folder, or with crew in selected player void UpdateSelection(); void OnSelChange(class C4GUI::Element *pEl) { UpdateSelection(); } void OnSelDblClick(class C4GUI::Element *pEl) { C4GUI::GUISound("Click"); OnPropertyBtn(NULL); } void UpdateActivatedPlayers(); // update Config.General.Participants by currently activated players void SelectItem(const StdStrBuf &Filename, bool fActivate); // find item by filename and select (and activate it, if desired) void SetPlayerMode(); // change view to listing players void SetCrewMode(PlayerListItem *pForPlayer); // change view to listing crew of a player static int32_t CrewSortFunc(const C4GUI::Element *pEl1, const C4GUI::Element *pEl2, void *par); void ResortCrew(); protected: void OnItemCheckChange(C4GUI::Element *pCheckBox); static bool CheckPlayerName(const StdStrBuf &Playername, StdStrBuf &Filename, const StdStrBuf *pPrevFilename, bool fWarnEmpty); ListItem *GetSelection(); void SetSelection(ListItem *pNewItem); C4GUI::RenameEdit *pRenameEdit; // hack: set by crew list item renaming. Must be cleared when something is done in the dlg void AbortRenaming(); friend class ListItem; friend class PlayerListItem; friend class CrewListItem; friend class C4StartupPlrPropertiesDlg; protected: virtual int32_t GetMarginTop() { return (rcBounds.Hgt/7); } virtual bool HasBackground() { return false; } virtual void DrawElement(C4TargetFacet &cgo); virtual bool OnEnter() { return false; } // Enter ignored virtual bool OnEscape() { DoBack(); return true; } bool KeyBack() { DoBack(); return true; } bool KeyProperties() { OnPropertyBtn(NULL); return true; } bool KeyCrew() { OnCrewBtn(NULL); return true; } bool KeyDelete() { OnDelBtn(NULL); return true; } bool KeyNew() { OnNewBtn(NULL); return true; } void OnNewBtn(C4GUI::Control *btn); void OnNew(const StdStrBuf &Playername); void OnActivateBtn(C4GUI::Control *btn); void OnPropertyBtn(C4GUI::Control *btn); void OnPropertyCtx(C4GUI::Element *el) { OnPropertyBtn(NULL); } void OnCrewBtn(C4GUI::Control *btn); void OnDelBtn(C4GUI::Control *btn); void OnDelCtx(C4GUI::Element *el) { OnDelBtn(NULL); } void OnDelBtnConfirm(ListItem *pSel); void OnBackBtn(C4GUI::Control *btn) { DoBack(); } public: void DoBack(); // back to main menu }; // player creation or property editing dialog class C4StartupPlrPropertiesDlg: public C4GUI::Dialog { protected: C4StartupPlrSelDlg *pMainDlg; // may be NULL if shown as creation dialog in main menu! C4StartupPlrSelDlg::PlayerListItem * pForPlayer; C4GUI::Edit *pNameEdit; // player name edit box C4GUI::CheckBox *pAutoStopControl; // wether the player uses AutoStopControl C4GUI::IconButton *pClrPreview; C4GUI::Picture *pCtrlImg; C4GUI::Picture *pSkinImg; C4GUI::IconButton *pMouseBtn, *pJumpNRunBtn, *pClassicBtn, *pPictureBtn; C4GUI::Label *ctrl_name_lbl; C4PlayerInfoCore C4P; // player info core copy currently being edited C4FacetSurface fctOldBigIcon; C4FacetSurface fctNewBigIcon; // if assigned, save new picture/bigicon bool fClearBigIcon; // if true, delete current picture/bigicon virtual const char *GetID() { return "PlrPropertiesDlg"; } void DrawElement(C4TargetFacet &cgo); virtual int32_t GetMarginTop() { return 16; } virtual int32_t GetMarginLeft() { return 45; } virtual int32_t GetMarginRight() { return 55; } virtual int32_t GetMarginBottom() { return 30; } virtual void UserClose(bool fOK); // OK only with a valid name virtual bool IsComponentOutsideClientArea() { return true; } // OK and close btn void OnClrChangeLeft(C4GUI::Control *pBtn); void OnClrChangeRight(C4GUI::Control *pBtn); void OnClrChangeCustom(C4GUI::Control *pBtn); void OnCtrlChangeLeft(C4GUI::Control *pBtn); void OnCtrlChangeRight(C4GUI::Control *pBtn); void OnSkinChangeLeft(C4GUI::Control *pBtn); void OnSkinChangeRight(C4GUI::Control *pBtn); void OnPictureBtn(C4GUI::Control *pBtn); private: void UpdatePlayerColor(bool fUpdateSliders); void UpdatePlayerControl(); void UpdatePlayerSkin(); void UpdateBigIcon(); bool SetNewPicture(C4Surface &srcSfc, C4FacetSurface *trgFct, int32_t iMaxSize, bool fColorize); void SetNewPicture(const char *szFromFilename); // set new bigicon by loading and scaling if necessary. If szFromFilename==NULL, clear bigicon public: C4StartupPlrPropertiesDlg(C4StartupPlrSelDlg::PlayerListItem * pForPlayer, C4StartupPlrSelDlg *pMainDlg); ~C4StartupPlrPropertiesDlg() { } virtual void OnClosed(bool fOK); // close CB }; #endif // INC_C4StartupPlrSelDlg