This file is indexed.

/usr/include/SurgSim/Physics/CcdCollisionLoop.h is in libopensurgsim-dev 0.7.0-6ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
// This file is a part of the OpenSurgSim project.
// Copyright 2013-2016, SimQuest Solutions Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef SURGSIM_PHYSICS_CCDCOLLISIONLOOP_H
#define SURGSIM_PHYSICS_CCDCOLLISIONLOOP_H

#include "SurgSim/Physics/ComputationGroup.h"

namespace SurgSim
{

namespace Framework
{
class Logger;
}

namespace Collision
{
class CollisionPair;
struct Contact;
}
namespace Physics
{

class CcdCollision;
class ContactFiltering;
class UpdateCcdData;
class ContactConstraintGeneration;
class BuildMlcp;
class SolveMlcp;
class PushResults;
class PhysicsManager;

class CcdCollisionLoop : public Computation
{
public:

	/// Constructor
	explicit CcdCollisionLoop(bool copyState);

	/// Destructor
	~CcdCollisionLoop();

	SURGSIM_CLASSNAME(SurgSim::Physics::CcdCollisionLoop);

	std::shared_ptr<PhysicsManagerState> doUpdate(const double& dt,
			const std::shared_ptr<PhysicsManagerState>& state) override;

	///@{
	/// Test access
	friend class CcdCollisionLoopTest_FilterContacts_Test;
	friend class CcdCollisionLoopTest_FilterContactsWithEpsilon_Test;
	///@}

private:
	///@{
	/// Computations
	std::unique_ptr<CcdCollision> m_ccdCollision;
	std::unique_ptr<UpdateCcdData> m_updateCcdData;
	std::unique_ptr<ContactFiltering> m_contactFilter;
	std::unique_ptr<ContactConstraintGeneration> m_constraintGeneration;
	std::unique_ptr<BuildMlcp> m_buildMlcp;
	std::unique_ptr<SolveMlcp> m_solveMlcp;
	std::unique_ptr<PushResults> m_pushResults;
	///@}

	size_t m_maxIterations; ///< maximum number of iterations to run

	/// epsilon as a fraction of dt, i.e. if this is 100, the epsilon will be dt/100
	/// during the iteration epsilon will be scaled to remain dt/100 as it pertains to the ever shrinking interval
	/// that is the iterations intervall
	double m_epsilonFactor;

	/// Takes all the contacts from ccdPairs, finds the first contact wrt contact time
	/// \param ccdPairs the list of pairs that should be checked for contacts
	/// \param [out] currentTimeOfImpact the earliest contact time found in ccdPairs
	/// \return true if there were any contacts found in ccdPairs
	bool findEarliestContact(const std::vector<std::shared_ptr<Collision::CollisionPair>>& ccdPairs,
							 double* currentTimeOfImpact);

	/// Removes all contacts with contact time greater than the first contact time + epsilon
	/// \param ccdPairs the list of pairs that should be checked for contacts
	/// \param epsilon the epsilon to be added to the first contactTime for filtering
	/// \param contactTime times outside of epsilon from contactTime will be reomved from consideration
	void filterLaterContacts(std::vector<std::shared_ptr<Collision::CollisionPair>>* ccdPairs,
							 double epsilon,
							 double contactTime);

	/// Backs up all current contacts into oldContacts and then clears the ccdPairs
	/// \param ccdPairs the list of current contact pairs
	/// \param oldContacts the backup of the contacts
	void backupContacts(std::vector<std::shared_ptr<Collision::CollisionPair>>* ccdPairs,
						std::vector<std::list<std::shared_ptr<Collision::Contact>>>* oldContacts);

	/// Adds all of the backed up contacts back into the current contacts. Contacts already in 'ccdPairs'
	/// will be kept..
	/// \param ccdPairs the list of current contact pairs
	/// \param oldContacts the backup of the contacts
	void restoreContacts(std::vector<std::shared_ptr<Collision::CollisionPair>>* ccdPairs,
						 std::vector<std::list<std::shared_ptr<Collision::Contact>>>* oldContacts);

	/// Logs all of the contacts
	/// \param ccdPairs the list of current contact pairs
	void printContacts(const std::vector<std::shared_ptr<Collision::CollisionPair>>& ccdPairs);

	std::shared_ptr<SurgSim::Framework::Logger> m_logger;
};

}
}

#endif