fixed hyperlinks and evidencebutton + muted music

This commit is contained in:
David Skoland 2017-02-20 03:17:52 +01:00
parent 0044141c14
commit 19080a6130
7 changed files with 47 additions and 30 deletions

View File

@ -13,7 +13,7 @@ RC_ICONS = logo.ico
TARGET = Attorney_Online_remake
TEMPLATE = app
VERSION = 2.2.2.0
VERSION = 2.2.3.0
SOURCES += main.cpp\
lobby.cpp \

View File

@ -125,7 +125,7 @@ public:
private:
const int RELEASE = 2;
const int MAJOR_VERSION = 2;
const int MINOR_VERSION = 2;
const int MINOR_VERSION = 3;
QString user_theme = "default";

View File

@ -524,8 +524,8 @@ void Courtroom::set_widgets()
set_size_and_pos(ui_blip_slider, "blip_slider");
set_size_and_pos(ui_evidence_button, "evidence_button");
//ui_evidence_button->set_image("evidencebutton.png");
ui_evidence_button->setText("Evidence");
ui_evidence_button->set_image("evidencebutton.png");
//ui_evidence_button->setText("Evidence");
set_size_and_pos(ui_evidence, "evidence_background");
ui_evidence->set_image("evidencebackground.png");
@ -796,6 +796,8 @@ void Courtroom::enter_courtroom(int p_cid)
set_widgets();
//ui_server_chatlog->setHtml(ui_server_chatlog->toHtml());
ui_char_select_background->hide();
ui_ic_chat_message->setEnabled(m_cid != -1);
@ -837,17 +839,17 @@ void Courtroom::append_ms_chatmessage(QString f_message)
ui_ms_chatlog->moveCursor(QTextCursor::End);
QStringList word_list = f_message.split(" ");
f_message = "";
for (QString i_word : word_list)
{
if (i_word.startsWith("http"))
i_word = "<a href=\"" + i_word + "\">" + i_word + "</a>";
f_message += i_word + " ";
ui_ms_chatlog->insertHtml("<a href=\"" + i_word + "\">" + i_word + "</a> ");
else
ui_ms_chatlog->insertPlainText(i_word + " ");
}
ui_ms_chatlog->append(f_message);
//ui_ms_chatlog->append(f_message);
ui_ms_chatlog->insertPlainText("\n");
if (old_cursor.hasSelection() || !is_scrolled_down)
{
@ -863,7 +865,7 @@ void Courtroom::append_ms_chatmessage(QString f_message)
}
}
void Courtroom::append_server_chatmessage(QString f_message)
void Courtroom::append_server_chatmessage(QString f_name, QString f_message)
{
const QTextCursor old_cursor = ui_server_chatlog->textCursor();
const int old_scrollbar_value = ui_server_chatlog->verticalScrollBar()->value();
@ -871,18 +873,19 @@ void Courtroom::append_server_chatmessage(QString f_message)
ui_server_chatlog->moveCursor(QTextCursor::End);
ui_server_chatlog->insertPlainText(f_name + ": ");
QStringList word_list = f_message.split(" ");
f_message = "";
for (QString i_word : word_list)
{
if (i_word.startsWith("http"))
i_word = "<a href=\"" + i_word + "\">" + i_word + "</a>";
f_message += i_word + " ";
ui_server_chatlog->insertHtml("<a href=\"" + i_word + "\">" + i_word + "</a> ");
else
ui_server_chatlog->insertPlainText(i_word + " ");
}
ui_server_chatlog->append(f_message);
ui_server_chatlog->insertPlainText("\n");
if (old_cursor.hasSelection() || !is_scrolled_down)
{
@ -1511,11 +1514,18 @@ void Courtroom::handle_song(QStringList *p_contents)
if (f_contents.size() < 2)
return;
music_player->play(f_contents.at(0));
int n_char = f_contents.at(1).toInt();
if (n_char >= 0 && n_char < char_list.size())
if (n_char >= char_list.size())
return;
if (n_char >= 0)
if (mute_map.value(char_list.at(f_contents.at(1).toInt()).name))
return;
music_player->play(f_contents.at(0));
if (n_char >= 0)
append_ic_text(char_list.at(n_char).name + " has played a song: " + f_contents.at(0) + "\n");
}

View File

@ -77,7 +77,7 @@ public:
void list_music();
void append_ms_chatmessage(QString f_message);
void append_server_chatmessage(QString f_message);
void append_server_chatmessage(QString f_name, QString f_message);
void handle_chatmessage(QStringList *p_contents);
void handle_chatmessage_2();

View File

@ -26,7 +26,7 @@ Lobby::Lobby(AOApplication *p_ao_app) : QMainWindow()
ui_server_list = new QListWidget(this);
ui_player_count = new QLabel(this);
ui_description = new QPlainTextEdit(this);
ui_chatbox = new QPlainTextEdit(this);
ui_chatbox = new QTextBrowser(this);
ui_chatname = new QLineEdit(this);
ui_chatname->setPlaceholderText("Name");
ui_chatmessage = new QLineEdit(this);
@ -100,7 +100,7 @@ void Lobby::set_widgets()
set_size_and_pos(ui_chatbox, "chatbox");
ui_chatbox->setReadOnly(true);
ui_chatbox->setStyleSheet("QPlainTextEdit{background-color: rgba(0, 0, 0, 0);}");
ui_chatbox->setStyleSheet("QTextBrowser{background-color: rgba(0, 0, 0, 0);}");
set_size_and_pos(ui_chatname, "chatname");
ui_chatname->setStyleSheet("background-color: rgba(0, 0, 0, 0);"
@ -340,7 +340,18 @@ void Lobby::append_chatmessage(QString f_message)
ui_chatbox->moveCursor(QTextCursor::End);
ui_chatbox->appendPlainText(f_message);
QStringList word_list = f_message.split(" ");
for (QString i_word : word_list)
{
if (i_word.startsWith("http"))
ui_chatbox->insertHtml("<a href=\"" + i_word + "\">" + i_word + "</a> ");
else
ui_chatbox->insertPlainText(i_word + " ");
}
//ui_ms_chatlog->append(f_message);
ui_chatbox->insertPlainText("\n");
if (old_cursor.hasSelection() || !is_scrolled_down)
{

View File

@ -11,6 +11,7 @@
#include <QPlainTextEdit>
#include <QLineEdit>
#include <QProgressBar>
#include <QTextBrowser>
class AOApplication;
@ -61,7 +62,7 @@ private:
QLabel *ui_player_count;
QPlainTextEdit *ui_description;
QPlainTextEdit *ui_chatbox;
QTextBrowser *ui_chatbox;
QLineEdit *ui_chatname;
QLineEdit *ui_chatmessage;

View File

@ -170,15 +170,10 @@ void AOApplication::server_packet_received(AOPacket *p_packet)
else if (header == "CT")
{
if (f_contents.size() < 2)
{
qDebug() << "W: malformed packet!";
goto end;
}
QString message_line = f_contents.at(0) + ": " + f_contents.at(1);
if (courtroom_constructed)
w_courtroom->append_server_chatmessage(message_line);
w_courtroom->append_server_chatmessage(f_contents.at(0), f_contents.at(1));
}
else if (header == "PN")
{
@ -465,7 +460,7 @@ void AOApplication::server_packet_received(AOPacket *p_packet)
}
else if (header == "MC")
{
if (courtroom_constructed)
if (courtroom_constructed && courtroom_loaded)
w_courtroom->handle_song(&p_packet->get_contents());
}
else if (header == "RT")