|
|
|
@ -10,6 +10,7 @@
|
|
|
|
|
#include "client/Client.h"
|
|
|
|
|
#include "client/UserInfo.h"
|
|
|
|
|
#include "client/requestbroker/RequestListener.h"
|
|
|
|
|
#include "Format.h"
|
|
|
|
|
|
|
|
|
|
ProfileActivity::ProfileActivity(std::string username) :
|
|
|
|
|
WindowActivity(ui::Point(-1, -1), ui::Point(236, 300)),
|
|
|
|
@ -86,72 +87,142 @@ void ProfileActivity::setUserInfo(UserInfo newInfo)
|
|
|
|
|
info.biography = "\bgNot Provided";
|
|
|
|
|
if (!info.location.length() && !editable)
|
|
|
|
|
info.location = "\bgNot Provided";
|
|
|
|
|
if (!info.website.length() && !editable)
|
|
|
|
|
info.location = "\bgNot Provided";
|
|
|
|
|
//if (!info.age.length() && !editable)
|
|
|
|
|
// info.age = "\bgNot Provided";
|
|
|
|
|
if (!info.website.length())
|
|
|
|
|
info.website = "\bgNot Provided";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ui::ScrollPanel * scrollPanel = new ui::ScrollPanel(ui::Point(1, 1), ui::Point(Size.X-2, Size.Y-16));
|
|
|
|
|
// everything is on a large scroll panel
|
|
|
|
|
scrollPanel = new ui::ScrollPanel(ui::Point(1, 1), ui::Point(Size.X-2, Size.Y-16));
|
|
|
|
|
AddComponent(scrollPanel);
|
|
|
|
|
int currentY = 5;
|
|
|
|
|
|
|
|
|
|
// username label
|
|
|
|
|
ui::Label * title = new ui::Label(ui::Point(4, currentY), ui::Point(Size.X-8-(40+8+75), 15), info.username);
|
|
|
|
|
title->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
|
|
|
|
|
scrollPanel->AddChild(title);
|
|
|
|
|
|
|
|
|
|
ui::AvatarButton * avatar = new ui::AvatarButton(ui::Point((Size.X-40)-8, 8), ui::Point(40, 40), info.username);
|
|
|
|
|
// avatar
|
|
|
|
|
ui::AvatarButton * avatar = new ui::AvatarButton(ui::Point((Size.X-40)-8, 5), ui::Point(40, 40), info.username);
|
|
|
|
|
scrollPanel->AddChild(avatar);
|
|
|
|
|
|
|
|
|
|
int currentY = 5;
|
|
|
|
|
// edit avatar button
|
|
|
|
|
if (editable)
|
|
|
|
|
{
|
|
|
|
|
ui::Button * editAvatar = new ui::Button(ui::Point(Size.X - (40 + 16 + 75), currentY), ui::Point(75, 15), "Edit Avatar");
|
|
|
|
|
editAvatar->SetActionCallback(new EditAvatarAction(this));
|
|
|
|
|
scrollPanel->AddChild(editAvatar);
|
|
|
|
|
}
|
|
|
|
|
ui::Label * title = new ui::Label(ui::Point(4, currentY), ui::Point(Size.X-8-(40+8+75), 15), info.username);
|
|
|
|
|
title->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
|
|
|
|
|
scrollPanel->AddChild(title);
|
|
|
|
|
currentY += 20;
|
|
|
|
|
currentY += 23;
|
|
|
|
|
|
|
|
|
|
// age
|
|
|
|
|
ui::Label * ageTitle = new ui::Label(ui::Point(4, currentY), ui::Point(18, 15), "Age:");
|
|
|
|
|
ageTitle->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
|
|
|
|
|
ageTitle->SetTextColour(ui::Colour(180, 180, 180));
|
|
|
|
|
scrollPanel->AddChild(ageTitle);
|
|
|
|
|
|
|
|
|
|
ui::Label * locationTitle = new ui::Label(ui::Point(4, currentY), ui::Point(Size.X-8-(40+8), 15), "Location");
|
|
|
|
|
// can't figure out how to tell a null from a 0 in the json library we use
|
|
|
|
|
ui::Label *age = new ui::Label(ui::Point(8+ageTitle->Size.X, currentY), ui::Point(40, 15), info.age ? format::NumberToString<int>(info.age) : "\bgNot Provided");
|
|
|
|
|
age->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
|
|
|
|
|
scrollPanel->AddChild(age);
|
|
|
|
|
currentY += 2+age->Size.Y;
|
|
|
|
|
|
|
|
|
|
// location
|
|
|
|
|
ui::Label * locationTitle = new ui::Label(ui::Point(4, currentY), ui::Point(45, 15), "Location:");
|
|
|
|
|
locationTitle->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
|
|
|
|
|
locationTitle->SetTextColour(ui::Colour(180, 180, 180));
|
|
|
|
|
scrollPanel->AddChild(locationTitle);
|
|
|
|
|
currentY += 17;
|
|
|
|
|
|
|
|
|
|
if (editable)
|
|
|
|
|
{
|
|
|
|
|
location = new ui::Textbox(ui::Point(4, currentY), ui::Point(Size.X-8-(40+8), 17), info.location);
|
|
|
|
|
}
|
|
|
|
|
location = new ui::Textbox(ui::Point(8+locationTitle->Size.X, currentY), ui::Point(Size.X-locationTitle->Size.X-16, 17), info.location);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
location = new ui::Label(ui::Point(4, currentY), ui::Point(Size.X-8-(40+8), 12), info.location);
|
|
|
|
|
location->SetTextColour(ui::Colour(180, 180, 180));
|
|
|
|
|
}
|
|
|
|
|
location = new ui::Label(ui::Point(4+locationTitle->Size.X, currentY), ui::Point(Size.X-locationTitle->Size.X-14, 17), info.location);
|
|
|
|
|
location->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
|
|
|
|
|
scrollPanel->AddChild(location);
|
|
|
|
|
this->location = location;
|
|
|
|
|
currentY += 10+location->Size.Y;
|
|
|
|
|
currentY += 2+location->Size.Y;
|
|
|
|
|
|
|
|
|
|
ui::Label * bioTitle = new ui::Label(ui::Point(4, currentY), ui::Point(Size.X-8, 15), "Biography");
|
|
|
|
|
// website
|
|
|
|
|
ui::Label * websiteTitle = new ui::Label(ui::Point(4, currentY), ui::Point(38, 15), "Website:");
|
|
|
|
|
websiteTitle->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
|
|
|
|
|
websiteTitle->SetTextColour(ui::Colour(180, 180, 180));
|
|
|
|
|
scrollPanel->AddChild(websiteTitle);
|
|
|
|
|
|
|
|
|
|
ui::Label *website = new ui::Label(ui::Point(8+websiteTitle->Size.X, currentY), ui::Point(Size.X-websiteTitle->Size.X-16, 15), info.website);
|
|
|
|
|
website->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
|
|
|
|
|
scrollPanel->AddChild(website);
|
|
|
|
|
currentY += 2+website->Size.Y;
|
|
|
|
|
|
|
|
|
|
// saves
|
|
|
|
|
ui::Label * savesTitle = new ui::Label(ui::Point(4, currentY), ui::Point(35, 15), "Saves:");
|
|
|
|
|
savesTitle->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
|
|
|
|
|
savesTitle->SetTextColour(ui::Colour(180, 180, 180));
|
|
|
|
|
scrollPanel->AddChild(savesTitle);
|
|
|
|
|
currentY += savesTitle->Size.Y;
|
|
|
|
|
|
|
|
|
|
// saves count
|
|
|
|
|
ui::Label * saveCountTitle = new ui::Label(ui::Point(12, currentY), ui::Point(30, 15), "Count:");
|
|
|
|
|
saveCountTitle->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
|
|
|
|
|
saveCountTitle->SetTextColour(ui::Colour(180, 180, 180));
|
|
|
|
|
scrollPanel->AddChild(saveCountTitle);
|
|
|
|
|
|
|
|
|
|
ui::Label *savesCount = new ui::Label(ui::Point(12+saveCountTitle->Size.X, currentY), ui::Point(Size.X-saveCountTitle->Size.X-16, 15), format::NumberToString<int>(info.saveCount));
|
|
|
|
|
savesCount->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
|
|
|
|
|
scrollPanel->AddChild(savesCount);
|
|
|
|
|
currentY += savesCount->Size.Y;
|
|
|
|
|
|
|
|
|
|
// average score
|
|
|
|
|
ui::Label * averageScoreTitle = new ui::Label(ui::Point(12, currentY), ui::Point(70, 15), "Average Score:");
|
|
|
|
|
averageScoreTitle->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
|
|
|
|
|
averageScoreTitle->SetTextColour(ui::Colour(180, 180, 180));
|
|
|
|
|
scrollPanel->AddChild(averageScoreTitle);
|
|
|
|
|
|
|
|
|
|
ui::Label *averageScore = new ui::Label(ui::Point(12+averageScoreTitle->Size.X, currentY), ui::Point(Size.X-averageScoreTitle->Size.X-16, 15), format::NumberToString<float>(info.averageScore));
|
|
|
|
|
averageScore->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
|
|
|
|
|
scrollPanel->AddChild(averageScore);
|
|
|
|
|
currentY += averageScore->Size.Y;
|
|
|
|
|
|
|
|
|
|
// highest score
|
|
|
|
|
ui::Label * highestScoreTitle = new ui::Label(ui::Point(12, currentY), ui::Point(69, 15), "Highest Score:");
|
|
|
|
|
highestScoreTitle->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
|
|
|
|
|
highestScoreTitle->SetTextColour(ui::Colour(180, 180, 180));
|
|
|
|
|
scrollPanel->AddChild(highestScoreTitle);
|
|
|
|
|
|
|
|
|
|
ui::Label *highestScore = new ui::Label(ui::Point(12+highestScoreTitle->Size.X, currentY), ui::Point(Size.X-highestScoreTitle->Size.X-16, 15), format::NumberToString<int>(info.highestScore));
|
|
|
|
|
highestScore->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
|
|
|
|
|
scrollPanel->AddChild(highestScore);
|
|
|
|
|
currentY += 2+highestScore->Size.Y;
|
|
|
|
|
|
|
|
|
|
// biograhy
|
|
|
|
|
ui::Label * bioTitle = new ui::Label(ui::Point(4, currentY), ui::Point(50, 15), "Biography:");
|
|
|
|
|
bioTitle->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
|
|
|
|
|
bioTitle->SetTextColour(ui::Colour(180, 180, 180));
|
|
|
|
|
scrollPanel->AddChild(bioTitle);
|
|
|
|
|
currentY += 17;
|
|
|
|
|
|
|
|
|
|
class BioChangedAction: public ui::TextboxAction
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ProfileActivity * profileActivity;
|
|
|
|
|
BioChangedAction(ProfileActivity * profileActivity_) { profileActivity = profileActivity_; }
|
|
|
|
|
virtual void TextChangedCallback(ui::Textbox * sender)
|
|
|
|
|
{
|
|
|
|
|
profileActivity->ResizeArea();
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (editable)
|
|
|
|
|
{
|
|
|
|
|
bio = new ui::Textbox(ui::Point(8, currentY), ui::Point(Size.X-16, -1), info.biography);
|
|
|
|
|
bio = new ui::Textbox(ui::Point(4, currentY), ui::Point(Size.X-12, -1), info.biography);
|
|
|
|
|
((ui::Textbox*)bio)->SetInputType(ui::Textbox::Multiline);
|
|
|
|
|
((ui::Textbox*)bio)->SetActionCallback(new BioChangedAction(this));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
bio = new ui::Label(ui::Point(4, currentY), ui::Point(Size.X-8, -1), info.biography);
|
|
|
|
|
bio->SetTextColour(ui::Colour(180, 180, 180));
|
|
|
|
|
}
|
|
|
|
|
bio = new ui::Label(ui::Point(4, currentY), ui::Point(Size.X-12, -1), info.biography);
|
|
|
|
|
bio->SetMultiline(true);
|
|
|
|
|
bio->Appearance.HorizontalAlign = ui::Appearance::AlignLeft;
|
|
|
|
|
bio->Appearance.VerticalAlign = ui::Appearance::AlignTop;
|
|
|
|
|
bio->AutoHeight();
|
|
|
|
|
scrollPanel->AddChild(bio);
|
|
|
|
|
currentY += 10+bio->Size.Y;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
scrollPanel->InnerSize = ui::Point(Size.X, currentY);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -181,6 +252,11 @@ void ProfileActivity::OnTryExit(ExitMethod method)
|
|
|
|
|
Exit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProfileActivity::ResizeArea()
|
|
|
|
|
{
|
|
|
|
|
scrollPanel->InnerSize = ui::Point(Size.X, bio->Position.Y + bio->Size.Y + 10);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProfileActivity::~ProfileActivity()
|
|
|
|
|
{
|
|
|
|
|
RequestBroker::Ref().DetachRequestListener(this);
|
|
|
|
|