本文整理汇总了C++中Firm::firm_name方法的典型用法代码示例。如果您正苦于以下问题:C++ Firm::firm_name方法的具体用法?C++ Firm::firm_name怎么用?C++ Firm::firm_name使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Firm
的用法示例。
在下文中一共展示了Firm::firm_name方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: i_button_go_stop
//--------- Begin of static function i_button_go_stop ---------//
//
static void i_button_go_stop(ButtonCustom *button, int repaintBody)
{
Firm *firmPtr = NULL;
if( !firm_array.is_deleted(button->custom_para.value) )
{
firmPtr = firm_array[button->custom_para.value];
}
vga.active_buf->put_bitmap( button->x1, button->y1,
// button resource name
image_button.read( button->pushed_flag ? (char*)"CARA-STD" :
mouse.in_area(button->x1, button->y1, button->x2, button->y2) ? (char*)"CARA-STH" : (char*)"CARA-STU" ),
// remap table
game.get_color_remap_table( (!firmPtr ? 0 : firmPtr->nation_recno), 0) );
// put destination marker
{
UnitCaravan *unitPtr = (UnitCaravan *)button->custom_para.ptr;
if( unitPtr->dest_stop_id > 0 && unitPtr->dest_stop_id <= MAX_STOP_FOR_CARAVAN
&& unitPtr->stop_array[unitPtr->dest_stop_id-1].firm_recno == button->custom_para.value )
{
vga.active_buf->put_bitmap_trans_decompress( button->x1+18, button->y1+6,
image_button.read("TRI-R") );
}
}
// put firm name
if( firmPtr )
{
font_snds.put_paragraph( button->x1+34, button->y1+5+(button->pushed_flag?1:0),
button->x2-5, button->y2-5+(button->pushed_flag?1:0),
firmPtr->firm_name() );
}
}