git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@137 fdac6126-5c0c-442c-9429-916003d36597
190 lines
7.0 KiB
C++
190 lines
7.0 KiB
C++
/*===========================================================================*\
|
|
* *
|
|
* OpenMesh *
|
|
* Copyright (C) 2001-2009 by Computer Graphics Group, RWTH Aachen *
|
|
* www.openmesh.org *
|
|
* *
|
|
*---------------------------------------------------------------------------*
|
|
* This file is part of OpenMesh. *
|
|
* *
|
|
* OpenMesh is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU Lesser General Public License as *
|
|
* published by the Free Software Foundation, either version 3 of *
|
|
* the License, or (at your option) any later version with the *
|
|
* following exceptions: *
|
|
* *
|
|
* If other files instantiate templates or use macros *
|
|
* or inline functions from this file, or you compile this file and *
|
|
* link it with other files to produce an executable, this file does *
|
|
* not by itself cause the resulting executable to be covered by the *
|
|
* GNU Lesser General Public License. This exception does not however *
|
|
* invalidate any other reasons why the executable file might be *
|
|
* covered by the GNU Lesser General Public License. *
|
|
* *
|
|
* OpenMesh is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU Lesser General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU LesserGeneral Public *
|
|
* License along with OpenMesh. If not, *
|
|
* see <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
\*===========================================================================*/
|
|
|
|
/*===========================================================================*\
|
|
* *
|
|
* $Revision$ *
|
|
* $Date$ *
|
|
* *
|
|
\*===========================================================================*/
|
|
|
|
#ifndef OPENMESH_APP_VDPMSTREAMING_SERVER_VDPMSERVERSESSION_HH
|
|
#define OPENMESH_APP_VDPMSTREAMING_SERVER_VDPMSERVERSESSION_HH
|
|
|
|
#include <QTcpSocket>
|
|
#include <QThread>
|
|
#include <QDataStream>
|
|
#include <QTimer>
|
|
#include <iostream>
|
|
// #include <QObject>
|
|
#include <OpenMesh/Core/Geometry/VectorT.hh>
|
|
#include <OpenMesh/Core/Geometry/Plane3d.hh>
|
|
#include <OpenMesh/Tools/Utils/Timer.hh>
|
|
#include <OpenMesh/Tools/VDPM/StreamingDef.hh>
|
|
#include <OpenMesh/Tools/VDPM/VHierarchyNodeIndex.hh>
|
|
#include <OpenMesh/Tools/VDPM/ViewingParameters.hh>
|
|
#include <OpenMesh/Tools/VDPM/VHierarchy.hh>
|
|
#include <OpenMesh/Tools/VDPM/VFront.hh>
|
|
#include <OpenMesh/Apps/VDProgMesh/Streaming/Server/ServerSideVDPM.hh>
|
|
#include <OpenMesh/Tools/VDPM/VHierarchyWindow.hh>
|
|
|
|
|
|
using OpenMesh::VDPM::VDPMStreamingPhase;
|
|
using OpenMesh::VDPM::kBaseMesh;
|
|
using OpenMesh::VDPM::kVSplits;
|
|
|
|
using OpenMesh::VDPM::VHierarchyWindow;
|
|
using OpenMesh::VDPM::VHierarchyNodeIndex;
|
|
using OpenMesh::VDPM::VHierarchyNodeHandle;
|
|
using OpenMesh::VDPM::ViewingParameters;
|
|
|
|
using OpenMesh::VDPM::set_debug_print;
|
|
|
|
class VDPMServerSession : public QThread
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
VDPMServerSession(QTcpSocket* _socket, QObject *parent=0, const char *name=0)
|
|
{
|
|
socket_ = _socket;
|
|
|
|
set_debug_print(true);
|
|
|
|
streaming_phase_ = kBaseMesh;
|
|
transmission_complete_ = false;
|
|
|
|
connect(socket_, SIGNAL(connected()), this, SLOT(socketConnected()));
|
|
QTcpSocket::connect(socket_, SIGNAL(readyRead()), this, SLOT(socketReadyRead()));
|
|
//connect(this, SIGNAL(connectionClosed()), SLOT(deleteLater()));
|
|
QTcpSocket::connect(socket_, SIGNAL(connectionClosed()), this, SLOT(delayedCloseFinished()));
|
|
|
|
///TODO: find out how to port it from QSocket -> QTcpSocket
|
|
// setSocket(sock);
|
|
|
|
qStatisticsTimer_ = new QTimer(this);
|
|
QTcpSocket::connect(qStatisticsTimer_, SIGNAL(timeout()), this, SLOT(print_statistics()));
|
|
|
|
mem_file = fopen("mem.txt", "w");
|
|
|
|
start();
|
|
}
|
|
|
|
~VDPMServerSession()
|
|
{
|
|
fclose(mem_file);
|
|
}
|
|
|
|
// void run()
|
|
// {
|
|
// exec();
|
|
// }
|
|
|
|
private:
|
|
|
|
VDPMStreamingPhase streaming_phase_;
|
|
bool transmission_complete_;
|
|
|
|
QTcpSocket* socket_;
|
|
|
|
private:
|
|
|
|
void sendBaseMeshToClient();
|
|
void send_vsplit_packets();
|
|
void readBaseMeshRequestFromClient();
|
|
void readViewingParametersFromClient();
|
|
|
|
void PrintOutVFront();
|
|
|
|
private slots:
|
|
|
|
void socketConnected()
|
|
{
|
|
std::cout << "socket is connected" << std::endl;
|
|
}
|
|
|
|
void socketReadyRead()
|
|
{
|
|
if (streaming_phase_ == kBaseMesh)
|
|
{
|
|
readBaseMeshRequestFromClient();
|
|
}
|
|
else if (streaming_phase_ == kVSplits)
|
|
{
|
|
readViewingParametersFromClient();
|
|
}
|
|
}
|
|
|
|
void print_statistics()
|
|
{
|
|
//std::cout << memory_requirements(true) << " " << memory_requirements(false) << std::endl;
|
|
}
|
|
|
|
private:
|
|
unsigned short tree_id_bits_; // obsolete
|
|
ServerSideVDPM* vdpm_;
|
|
VHierarchy* vhierarchy_;
|
|
VHierarchyWindow vhwindow_;
|
|
ViewingParameters viewing_parameters_;
|
|
float kappa_square_;
|
|
VHierarchyNodeHandleContainer vsplits_;
|
|
|
|
private:
|
|
bool outside_view_frustum(const OpenMesh::Vec3f &pos, float radius);
|
|
bool oriented_away(float sin_square, float distance_square, float product_value);
|
|
bool screen_space_error(float mue_square, float sigma_square, float distance_square, float product_value);
|
|
|
|
void adaptive_refinement();
|
|
void sequential_refinement();
|
|
bool qrefine(VHierarchyNodeHandle _node_handle);
|
|
void force_vsplit(VHierarchyNodeHandle node_handle);
|
|
void vsplit(VHierarchyNodeHandle _node_handle);
|
|
VHierarchyNodeHandle active_ancestor_handle(VHierarchyNodeIndex &node_index);
|
|
void stream_vsplits();
|
|
|
|
public:
|
|
bool set_vdpm(const char _vdpm_name[256]);
|
|
unsigned int memory_requirements_using_window(bool _estimate);
|
|
unsigned int memory_requirements_using_vfront();
|
|
|
|
// for example
|
|
private:
|
|
QTimer *qStatisticsTimer_;
|
|
FILE *mem_file;
|
|
};
|
|
|
|
#endif //OPENMESH_APP_VDPMSTREAMING_SERVER_VDPMSERVERSESSION_HH defined
|