您当前的位置:首页 > IT编程 > C++
| C语言 | Java | VB | VC | python | Android | TensorFlow | C++ | oracle | 学术与代码 | cnn卷积神经网络 | gnn | 图像修复 | Keras | 数据集 | Neo4j | 自然语言处理 | 深度学习 | 医学CAD | 医学影像 | 超参数 | pointnet | pytorch | 异常检测 | Transformers | 情感分类 | 知识图谱 |

自学教程:C++ FCPPT_TEXT函数代码示例

51自学网 2021-06-01 20:40:46
  C++
这篇教程C++ FCPPT_TEXT函数代码示例写得很实用,希望能帮到您。

本文整理汇总了C++中FCPPT_TEXT函数的典型用法代码示例。如果您正苦于以下问题:C++ FCPPT_TEXT函数的具体用法?C++ FCPPT_TEXT怎么用?C++ FCPPT_TEXT使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。

在下文中一共展示了FCPPT_TEXT函数的16个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。

示例1: my_base

sanguis::client::states::waiting_for_player::waiting_for_player(    my_context _ctx)    :    my_base(       _ctx    ),    log_{    this->context<    sanguis::client::machine    >().log_context(),    sanguis::client::states::log_location(),    sanguis::log_parameters(    fcppt::log::name{        FCPPT_TEXT("waiting_for_player")    }    )}{    FCPPT_LOG_DEBUG(        log_,        fcppt::log::_        << FCPPT_TEXT("Entering waiting_for_player")    );}
开发者ID:freundlich,项目名称:sanguis,代码行数:25,


示例2: path

boost::filesystem::pathsanguis::load::model::make_path(	sanguis::load::model::path const &_path){	boost::filesystem::path const path(		sanguis::media_path()		/		FCPPT_TEXT("models")		/		_path.get()	);	if(		!boost::filesystem::exists(			path		)	)		throw			sanguis::exception{				FCPPT_TEXT("Model ")				+				fcppt::filesystem::path_to_string(					_path.get()				)				+				FCPPT_TEXT(" not found!")			};	return		path;}
开发者ID:freundlich,项目名称:sanguis,代码行数:32,


示例3: FCPPT_TEXT

sanguis::aura_typesanguis::client::load::auras::lookup_name(	fcppt::string const &_name){	return		fcppt::optional::to_exception(			fcppt::enum_::index_of_array(				aura_types,				_name			),			[				&_name			]{				return					sanguis::exception{						FCPPT_TEXT("auras::lookup_name ")						+						_name						+						FCPPT_TEXT(" failed!")					};			}		);}
开发者ID:freundlich,项目名称:sanguis,代码行数:25,


示例4: FCPPT_LOG_DEBUG

voidgitbot::irc::client::process_line(	std::string const &_s){	if(		!is_prefix(			"PING :",			_s))	{		FCPPT_LOG_DEBUG(			mylogger,			fcppt::log::_ 				<< FCPPT_TEXT("Got a line, but it's not a ping, so doing nothing."));		return;	}	FCPPT_LOG_DEBUG(		mylogger,		fcppt::log::_ 			<< FCPPT_TEXT("Got a ping, sending back pong with: ")			<< _s.substr(6));				write(		"PONG :"+		_s.substr(			6));}
开发者ID:freundlich,项目名称:gitbot,代码行数:27,


示例5: FCPPT_TEXT

inlinefcppt::cast::bad_dynamic::bad_dynamic(	std::type_index const &_source,	std::type_index const &_destination):	fcppt::exception(		FCPPT_TEXT("Invalid dynamic_cast from type /"")		+		fcppt::type_name_from_index(			_source		)		+		FCPPT_TEXT("/" to type /"")		+		fcppt::type_name_from_index(			_destination		)		+		FCPPT_TEXT('"')	),	source_(		_source	),	destination_(		_destination	){}
开发者ID:amoylel,项目名称:fcppt,代码行数:29,


示例6: FCPPT_TEXT

fruitapp::fruit::material::object constfruitapp::fruit::material::from_json(	sge::parse::json::object const &o){	return		material::object(			material::diffuse_color(				sge::parse::json::find_and_convert_member<material::diffuse_color::value_type>(					o,					sge::parse::json::path(						FCPPT_TEXT("diffuse-color")))),			material::diffuse_coefficient(				sge::parse::json::find_and_convert_member<material::diffuse_coefficient::value_type>(					o,					sge::parse::json::path(						FCPPT_TEXT("diffuse-coefficient")))),			material::specular_color(				sge::parse::json::find_and_convert_member<material::diffuse_color::value_type>(					o,					sge::parse::json::path(						FCPPT_TEXT("specular-color")))),			material::specular_coefficient(				sge::parse::json::find_and_convert_member<material::specular_coefficient::value_type>(					o,					sge::parse::json::path(						FCPPT_TEXT("specular-coefficient")))),			material::specular_shininess(				sge::parse::json::find_and_convert_member<material::specular_shininess::value_type>(					o,					sge::parse::json::path(						FCPPT_TEXT("specular-shininess")))));}
开发者ID:pmiddend,项目名称:fruitcut,代码行数:32,


示例7: main

int main(){	fcppt::io::cout()		<< FCPPT_TEXT("Current version is ")		<< fcppt::version_string()		<< FCPPT_TEXT('/n');}
开发者ID:vinzenz,项目名称:fcppt,代码行数:7,


示例8: switch

fcppt::stringsanguis::server::entities::enemies::pretty_name(		sanguis::creator::enemy_type const _type){	switch(			_type		  )	{		case sanguis::creator::enemy_type::wolf_black:			 return FCPPT_TEXT("Black Wolf");		case sanguis::creator::enemy_type::wolf_brown:			 return FCPPT_TEXT("Brown Wolf");		case sanguis::creator::enemy_type::wolf_white:			 return FCPPT_TEXT("White Wolf");		case sanguis::creator::enemy_type::zombie00:			 return FCPPT_TEXT("Shambler");		case sanguis::creator::enemy_type::zombie01:			 return FCPPT_TEXT("Runner");		case sanguis::creator::enemy_type::spider:			 return FCPPT_TEXT("Wasp Spider");		case sanguis::creator::enemy_type::skeleton:			 return FCPPT_TEXT("Skeleton");		case sanguis::creator::enemy_type::ghost:			 return FCPPT_TEXT("Ghost");		case sanguis::creator::enemy_type::maggot:			 return FCPPT_TEXT("Maggot");		case sanguis::creator::enemy_type::reaper:			 return FCPPT_TEXT("Grim Reaper");	}	FCPPT_ASSERT_UNREACHABLE;}
开发者ID:freundlich,项目名称:sanguis,代码行数:31,


示例9: machine

awl::main::exit_code constsgeroids::main(	awl::main::function_context const &_main_function_context)try{	sgeroids::state_machine::object machine(		_main_function_context.argc(),		_main_function_context.argv());	fcppt::scoped_state_machine<sgeroids::state_machine::object> const scoped_machine(		machine);	return		machine.run();}catch(	fcppt::exception const &e){	fcppt::io::cerr()		<< FCPPT_TEXT("fcppt::exception: ")		<< e.string()		<< FCPPT_TEXT("/n");	return awl::main::exit_failure();}catch(	std::exception const &e){	std::cerr		<< "std::exception: "		<< e.what()		<< "/n";	return awl::main::exit_failure();}
开发者ID:pmiddend,项目名称:sgeroids,代码行数:34,


示例10: FCPPT_TEXT

inlinefcppt::cast::bad_truncation_check::bad_truncation_check(	fcppt::string const &_source_value,	std::type_index const &_source,	std::type_index const &_destination):	fcppt::exception(		FCPPT_TEXT("Invalid truncation_check_cast from ")		+		_source_value		+		FCPPT_TEXT(" of type /"")		+		fcppt::type_name_from_index(			_source		)		+		FCPPT_TEXT("/" to type /"")		+		fcppt::type_name_from_index(			_destination		)		+		FCPPT_TEXT('"')	),	source_(		_source	),	destination_(		_destination	){}
开发者ID:amoylel,项目名称:fcppt,代码行数:34,


示例11: FCPPT_TEXT

boost::statechart::resultinsula::states::finished::react(	events::render const &r){	context<game_outer>().react(		r);	context<game_inner>().react(		r);	fcppt::string const s = 		context<game_outer>().players_left()		?			FCPPT_TEXT("Press enter for next player")		:			FCPPT_TEXT("Press enter for the score board");	sge::font::draw_text(		context<game_outer>().large_font(),		context<game_outer>().font_drawer(),		FCPPT_TEXT("Great job!/n")+s,		sge::font::pos::null(),		fcppt::math::dim::structure_cast<sge::font::dim>(			context<machine>().systems().renderer()->screen_size()),		sge::font::align_h::center,		sge::font::align_v::center,		sge::font::flags::none);	return discard_event();}
开发者ID:pmiddend,项目名称:insula,代码行数:30,


示例12: FCPPT_TEXT

fcppt::stringsanguis::tiles::impl::orientation_to_string(	sanguis::tiles::orientation const _orientation){	return		fcppt::algorithm::map<			fcppt::string		>(			fcppt::enum_::make_range<				sanguis::tiles::direction			>(),			[				_orientation			](				sanguis::tiles::direction const _dir			)			{				return					_orientation[						_dir					]					?						FCPPT_TEXT('1')					:						FCPPT_TEXT('0')					;			}		);}
开发者ID:freundlich,项目名称:sanguis,代码行数:30,


示例13: machine

awl::main::exit_code constfruitapp::main(	awl::main::function_context const &_main_function_context)try{	fruitlib::signal_stack_printer::object stack_printer;	fruitapp::machine machine(		_main_function_context.argc(),		_main_function_context.argv());	fcppt::scoped_state_machine<fruitapp::machine> scoped_state_machine(		machine);	return		machine.run();}catch (fcppt::exception const &e){	fruitlib::message_box(		FCPPT_TEXT("fcppt::exception: ")+		e.string());	return awl::main::exit_failure();}catch (std::exception const &e){	fruitlib::message_box(		FCPPT_TEXT("std::exception: ")+		fcppt::from_std_string(			e.what()));	return awl::main::exit_failure();}
开发者ID:pmiddend,项目名称:fruitcut,代码行数:32,


示例14: world_

insula::physics::debug_drawer::debug_drawer(	world &_world,	sge::renderer::device_ptr const _renderer,	graphics::camera::object &_camera):	world_(		_world),	renderer_(		_renderer),	camera_(		_camera),	shader_(		renderer_,		media_path()/FCPPT_TEXT("debug_vertex.glsl"),		media_path()/FCPPT_TEXT("debug_fragment.glsl"),		graphics::shader::vf_to_string<vertex_format>(),		{			graphics::shader::variable(				"mvp",				graphics::shader::variable_type::uniform,				graphics::mat4())		},		graphics::shader::sampler_sequence()),	debug_mode_(		btIDebugDraw::DBG_NoDebug) // should be zero{	world_.handle().setDebugDrawer(		this);}
开发者ID:pmiddend,项目名称:insula,代码行数:29,


示例15: FCPPT_ASSERT_MESSAGE

voidgitbot::irc::client::handle_connect(	boost::system::error_code const &_e,	boost::asio::ip::tcp::resolver::iterator const _it){	if (_e)	{		FCPPT_ASSERT_MESSAGE(			_it == boost::asio::ip::tcp::resolver::iterator(),			FCPPT_TEXT("Tried every endpoint and couldn't connect to any of them"));					FCPPT_LOG_DEBUG(			mylogger,			fcppt::log::_ << FCPPT_TEXT("Tried endpoint, now starting another one..."));			socket_.close();		socket_.async_connect(			*_it,			boost::bind(				&client::handle_connect,					this,					boost::asio::placeholders::error,					boost::next(						_it)));		return;	}		FCPPT_LOG_DEBUG(		mylogger,		fcppt::log::_ << FCPPT_TEXT("In handle_connect, which was successful..."));		passive_write_buffer_ += "NICK "+nick_+"/r/n";	passive_write_buffer_ += "USER "+nick_+" 0 * :"+user_+"/r/n";	BOOST_FOREACH(channel const &c,channels_)		passive_write_buffer_ += "JOIN "+c+"/r/n";			commit_write_buffer();		timer_->expires_from_now(		boost::posix_time::seconds(			timeout_));				last_reception_ = 		clock::now();	timer_->async_wait(		boost::bind(			&client::handle_timeout,			this,			boost::asio::placeholders::error));		boost::asio::async_read_until(		socket_,		response_,		"/r/n",		boost::bind(			&client::handle_read_line,			this,			boost::asio::placeholders::error));}
开发者ID:freundlich,项目名称:gitbot,代码行数:59,


示例16: FCPPT_TEXT

voidinsula::physics::debug_drawer::reportErrorWarning(	char const* warningString){	fcppt::io::cerr 		<< FCPPT_TEXT("Debug drawer warning: ") 		<< fcppt::from_std_string(warningString) 		<< FCPPT_TEXT("/n");}
开发者ID:pmiddend,项目名称:insula,代码行数:9,



注:本文中的FCPPT_TEXT函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


C++ FC_ASSERT函数代码示例
C++ FCLOSE函数代码示例
万事OK自学网:51自学网_软件自学网_CAD自学网自学excel、自学PS、自学CAD、自学C语言、自学css3实例,是一个通过网络自主学习工作技能的自学平台,网友喜欢的软件自学网站。