2019-05-10直播拉流

#import "LiveViewController.h"

#import "NetworkTools.h"

#import

#import

#import "ChatRoomView.h"

#import "CommentsView.h"

#import "LiveGiftShowModel.h"

#import "LiveGiftShowCustom.h"

/// 2.顏色

#define KRGBACOLOR(r,g,b,a) [UIColor colorWithRed:(r)/255.0green:(g)/255.0blue:(b)/255.0alpha:(a)]

staticNSString*status[] = {

? ? @"PLPlayerStatusUnknow",

? ? @"PLPlayerStatusPreparing",

? ? @"PLPlayerStatusReady",

? ? @"PLPlayerStatusOpen",

? ? @"PLPlayerStatusCaching",

? ? @"PLPlayerStatusPlaying",

? ? @"PLPlayerStatusPaused",

? ? @"PLPlayerStatusStopped",

? ? @"PLPlayerStatusError",

? ? @"PLPlayerStatusCompleted"

};

@interface LiveViewController ()<PLPlayerDelegate,EMChatroomManagerDelegate,EMChatManagerDelegate,LiveGiftShowCustomDelegate>

@property (nonatomic,strong) PLPlayer *player;

@property(nonatomic,weak)UIActivityIndicatorView*activityIndicatorView;

/// 評論專區(qū)

@property (nonatomic,strong) ChatRoomView *chatRoomView;

/// 直播數(shù)據(jù)

@property (nonatomic,strong) NSMutableArray *chatDataArray;

/// 禮物區(qū)域

@property(nonatomic,weak)LiveGiftShowCustom* customGiftShow;

@property (nonatomic ,strong) NSArray <LiveGiftListModel *>* giftArr;

@property (nonatomic ,strong) NSArray * giftDataSource;

@property (nonatomic, strong) LiveUserModel *firstUser;

@property (nonatomic, strong) LiveUserModel *secondUser;

@property (nonatomic, strong) LiveUserModel *thirdUser;

@property (nonatomic, strong) LiveUserModel *fourthUser;

@property (nonatomic, strong) LiveUserModel *fifthUser;

@property (nonatomic, strong) LiveUserModel *fifthUser1;

@property (nonatomic, strong) LiveUserModel *fifthUser2;

@property (nonatomic, strong) LiveUserModel *fifthUser3;

@property (nonatomic,strong) LiveGiftListModel *giftListModel;

@end

@implementationLiveViewController

-(void)viewWillAppear:(BOOL)animated {

? ? [superviewWillAppear:animated];

? ? [self.navigationController setNavigationBarHidden:YES];

}

- (void)viewDidLoad {

? ? [super viewDidLoad];


? ? self.view.backgroundColor = [UIColor whiteColor];


? ? [self chatRoomUI];


? ? [self getPlayerUI];

}

- (void)getPlayerUI {

? ? NSURL*streamURL = [NSURLURLWithString:self.rtmp];

? ? //? ? ? ? ? ? ? ? weakSelf.player = [PLPlayer playerWithURL:streamURL option:weakSelf.option];

? ? //

? ? //? ? ? ? ? ? ? ? [weakSelf.player play];

? ? [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil];


? ? PLPlayerOption *option = [PLPlayerOption defaultOption];

? ? [optionsetOptionValue:@(15) forKey:PLPlayerOptionKeyTimeoutIntervalForMediaPackets];


? ? self.player= [PLPlayerplayerWithURL:streamURLoption:option];


? ? self.player.delegate = self;


? ? //? ? [self.view addSubview:self.player.playerView];

? ? [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(startPlayer) name:UIApplicationWillEnterForegroundNotification object:nil];


? ? [selfsetUI];

? ? [self startPlayer];


? ? [self.playerplay];

}

#pragma mark - 播放代理

/// 結(jié)束主播

- (void)player:(nonnullPLPlayer*)player stoppedWithError:(nullableNSError*)error {

? ? NSLog(@"%@---%@",player,error);

? ? // 當(dāng)發(fā)生錯誤,停止播放時,會回調(diào)這個方法

? ? UIAlertAction *alertAction = [UIAlertAction actionWithTitle:@"好" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

? ? ? ? [self dismissViewControllerAnimated:YES completion:nil];

? ? }];

? ? //初始化

? ? UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"主播下播了..." message:@"" preferredStyle:UIAlertControllerStyleAlert];

? ? //添加操作

? ? [alertaddAction:alertAction];

? ? [self presentViewController:alert animated:YES completion:nil];

}

/// 設(shè)置播放器frame

- (void)setUI {

? ? if (self.player.status != PLPlayerStatusError) {

? ? ? ? UIView*playerView =self.player.playerView;

? ? ? ? playerView.backgroundColor= [UIColorwhiteColor];

? ? ? ? playerView.frame = CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height);

? ? ? ? //? ? ? ? playerView.contentMode = UIViewContentModeScaleAspectFit;

? ? ? ? [self.viewaddSubview:playerView];

? ? ? ? //? ? ? ? if (!playerView.superview) {

? ? ? ? //? ? ? ? ? ? playerView.contentMode = UIViewContentModeScaleAspectFit;

? ? ? ? //? ? ? ? ? ? playerView.autoresizingMask = UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;

? ? ? ? //? ? ? ? ? ? [self.view addSubview:playerView];

? ? ? ? //? ? ? ? }



? ? ? ? UIButton*cancelBtn = [[UIButtonalloc]init];

? ? ? ? cancelBtn.frame=CGRectMake(self.view.bounds.size.width-70,20,50,50);

? ? ? ? [cancelBtnsetTitle:@"關(guān)閉" forState:UIControlStateNormal];

? ? ? ? [cancelBtnsetTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

? ? ? ? [playerViewaddSubview:cancelBtn];

? ? ? ? [cancelBtnaddTarget:self action:@selector(cancelClick) forControlEvents:UIControlEventTouchUpInside];


? ? ? ? // 評論區(qū)

? ? ? ? self.chatRoomView= [[ChatRoomViewalloc]init];

? ? ? ? self.chatRoomView.frame = CGRectMake(10, self.view.bounds.size.height-250, self.view.bounds.size.width-100, 200);

? ? ? ? [playerViewaddSubview:self.chatRoomView];



? ? ? ? CommentsView*commentsView = [[CommentsViewalloc]init];

? ? ? ? commentsView.frame = CGRectMake(0, self.view.bounds.size.height-50, self.view.bounds.size.width, 50);

? ? ? ? [playerViewaddSubview:commentsView];


? ? ? ? __weaktypeof(self)weakSelf =self;

? ? ? ? // 評論區(qū)

? ? ? ? [commentsViewsetCommentsBlock:^(NSString*_Nonnullcontent) {

? ? ? ? ? ? NSLog(@"發(fā)表評論=%@",content);


? ? ? ? ? ? EMTextMessageBody*body = [[EMTextMessageBodyalloc]initWithText:content];



? ? ? ? ? ? EMMessage*message = [[EMMessagealloc]initWithConversationID:self.chatRoomIdfrom:@"15622731953"to:self.chatRoomIdbody:bodyext:nil];


? ? ? ? ? ? message.chatType=EMChatTypeChatRoom;

? ? ? ? ? ? // 發(fā)送消息

? ? ? ? ? ? EMConversation*conversation = [[EMClientsharedClient].chatManagergetConversation:message.conversationIdtype:EMConversationTypeChatRoomcreateIfNotExist:YES];

? ? ? ? ? ? [conversationinsertMessage:messageerror:nil];


? ? ? ? ? ? // 更新消息

//? ? ? ? ? ? [[EMClient sharedClient].chatManager updateMessage:message];

//? ? ? ? ? ? [[EMClient sharedClient].chatManager updateMessage:message completion:^(EMMessage *aMessage, EMError *aError) {

//? ? ? ? ? ? ? ? NSLog(@"---%@---%@",aMessage,aError);

//

//? ? ? ? ? ? }];

? ? ? ? ? ? [[EMClientsharedClient].chatManagersendMessage:messageprogress:nilcompletion:^(EMMessage*message,EMError*error) {

? ? ? ? ? ? ? ? NSLog(@"---%@---%@",message,error);

? ? ? ? ? ? ? ? if(!error) {

//? ? ? ? ? ? ? ? ? ? NSString *string = [NSString stringWithFormat:@"%@:%@",message.from,content];

? ? ? ? ? ? ? ? ? ? NSAttributedString*string = [selfcontentFromColor:message.fromandText:content];

? ? ? ? ? ? ? ? ? ? [self.chatDataArrayaddObject:string];


? ? ? ? ? ? ? ? ? ? /// 賦值刷新

? ? ? ? ? ? ? ? ? ? self.chatRoomView.dataArray = self.chatDataArray;

? ? ? ? ? ? ? ? }

? ? ? ? ? ? }];

? ? ? ? }];



? ? ? ? /// 發(fā)禮物

? ? ? ? [commentsViewsetGiftBlock:^(NSIndexPath*itme) {

? ? ? ? ? ? [weakSelfv15BtnClicked:itme];

? ? ? ? }];


? ? }

}

#pragma mark - 響應(yīng)方法

- (void)cancelClick {

? ? [self dismissViewControllerAnimated:YES completion:nil];

}

- (void)startPlayer {

? ? [self addActivityIndicatorView];

? ? [self.playerplay];

}

/// 設(shè)置播放器view

- (void)addActivityIndicatorView {


? ? if (self.activityIndicatorView) {

? ? ? ? return;

? ? }

? ? UIActivityIndicatorView *activityIndicatorView = [[UIActivityIndicatorView alloc]initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];

? ? activityIndicatorView.center=CGPointMake(CGRectGetMidX(self.view.bounds),CGRectGetMidY(self.view.bounds));

? ? [self.viewaddSubview:activityIndicatorView];

? ? [activityIndicatorViewstopAnimating];


? ? self.activityIndicatorView= activityIndicatorView;

}

#pragma mark - <PLPlayerDelegate>

- (void)player:(nonnullPLPlayer*)player statusDidChange:(PLPlayerStatus)state {

? ? //? ? if (PLPlayerStatusCaching == state) {

? ? //? ? ? ? [self.activityIndicatorView startAnimating];

? ? //? ? } else {

? ? //? ? ? ? [self.activityIndicatorView stopAnimating];

? ? //? ? }

? ? NSLog(@"%@",status[state]);

}

#pragma mark- 聊天室

- (void)chatRoomUI {

? ? // 登錄

//? ? [[EMClient sharedClient] addDelegate:self delegateQueue:nil];

//? ? // 注冊群組回調(diào)

//? ? [[EMClient sharedClient].groupManager addDelegate:self delegateQueue:nil];

//? ? // 注冊聯(lián)系人回調(diào)

//? ? [[EMClient sharedClient].contactManager addDelegate:self delegateQueue:nil];

? ? // 注冊信息回調(diào)

? ? [[EMClient sharedClient].chatManager addDelegate:self delegateQueue:nil];;



? ? // 注冊聊天室回調(diào)

? ? [[EMClient sharedClient].roomManager addDelegate:self delegateQueue:nil];


? ? // 加入聊天室

? ? [[EMClientsharedClient].roomManagerjoinChatroom:self.chatRoomIdcompletion:^(EMChatroom*aChatroom,EMError*aError) {

? ? ? ? NSLog(@"%@--%@",aChatroom,aError);

? ? }];

}

//sendMessageReadAck

/// 接收到消息列表

- (void)messagesDidReceive:(NSArray*)aMessages {

? ? NSLog(@"收到消息列表%@",aMessages);

? ? for(EMMessage*messageinaMessages) {


? ? ? ? EMTextMessageBody *body = (EMTextMessageBody *)message.body;


? ? ? ? NSAttributedString*string = [selfcontentFromColor:message.fromandText:body.text];

? ? ? ? [self.chatDataArrayaddObject:string];

? ? }


? ? // 賦值

? ? self.chatRoomView.dataArray = self.chatDataArray;

}

#pragma mark - 改變字體顏色

- (NSAttributedString*)contentFromColor:(NSString*)from andText:(NSString*)text {


? ? NSString*contentString = [NSStringstringWithFormat:@"%@ %@",from,text];

? ? NSMutableAttributedString *contentStr = [[NSMutableAttributedString alloc]initWithString:contentString];

? ? //找出特定字符在整個字符串中的位置

? ? NSRangeredRange =NSMakeRange([[contentStrstring]rangeOfString:from].location, [[contentStrstring]rangeOfString:from].length);


? ? //修改特定字符的顏色? 235 229 177

? ? [contentStraddAttributes:@{NSForegroundColorAttributeName:KRGBACOLOR(235,229,177,1.0)}range:redRange];

? ? returncontentStr;

}

#pragma mark - 退出移除操作

- (void)dealloc {

? ? // 移除聊天室回調(diào)

? ? [[EMClient sharedClient].roomManager removeDelegate:self];

//? ? 75415692574721

? ? // 退出聊天室

? ? [[EMClient sharedClient].roomManager leaveChatroom:self.chatRoomId completion:^(EMError *aError) {

? ? ? ? NSLog(@"%@",aError);

? ? }];

}

- (NSMutableArray*)chatDataArray {

? ? if (!_chatDataArray) {

? ? ? ? _chatDataArray= [NSMutableArrayarray];

? ? }

? ? return _chatDataArray;

}

#pragma mark - 點(diǎn)擊屏幕

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent*)event {

? ? /// 發(fā)布隱藏禮物通知

? ? [[NSNotificationCenter defaultCenter]postNotificationName:@"began" object:nil];

}

#pragma mark - 禮物區(qū)域

/*

?以下是測試方法:

?分別是三種添加視圖的方法

?animatedWithGiftModel:? 從1開始動畫展示到 model.toNumber 的效果,會累加;

?addLiveGiftShowModel:? 普通的從1顯示禮物視圖,會+=1;

?addLiveGiftShowModel: showNumber: 普通的禮物顯示視圖,指定顯示特定數(shù)字。

?*/

- (void)v15BtnClicked:(NSIndexPath*)indexPath{

? ? switch(indexPath.item) {

? ? ? ? case0:{

? ? ? ? ? ? LiveGiftShowModel * model = [LiveGiftShowModel giftModel:self.giftListModel userModel:self.firstUser];

//? ? ? ? ? ? model.toNumber = 8;

//? ? ? ? ? ? model.interval = 0.15;

? ? ? ? ? ? [self.customGiftShowanimatedWithGiftModel:model];

? ? ? ? ? ? break;

? ? ? ? }

? ? ? ? case1:{

? ? ? ? ? ? LiveGiftShowModel * model = [LiveGiftShowModel giftModel:self.giftArr[1] userModel:self.secondUser];

? ? ? ? ? ? [self.customGiftShowaddLiveGiftShowModel:model];

? ? ? ? ? ? break;

? ? ? ? }

? ? ? ? case2:{

? ? ? ? ? ? LiveGiftShowModel * model = [LiveGiftShowModel giftModel:self.giftArr[2] userModel:self.thirdUser];

? ? ? ? ? ? [self.customGiftShowanimatedWithGiftModel:model];

//? ? ? ? ? ? [self.customGiftShow addLiveGiftShowModel:model showNumber:99];

? ? ? ? ? ? break;

? ? ? ? }

? ? ? ? case3:{

? ? ? ? ? ? LiveGiftShowModel * model = [LiveGiftShowModel giftModel:self.giftArr[3] userModel:self.fourthUser];

//? ? ? ? ? ? model.toNumber = 3;

? ? ? ? ? ? [self.customGiftShowanimatedWithGiftModel:model];

? ? ? ? ? ? break;

? ? ? ? }

? ? ? ? case4:{

? ? ? ? ? ? LiveGiftShowModel * model = [LiveGiftShowModel giftModel:self.giftArr[4] userModel:self.fifthUser];

//? ? ? ? ? ? model.toNumber = 2;

? ? ? ? ? ? [self.customGiftShowanimatedWithGiftModel:model];

? ? ? ? ? ? break;

? ? ? ? }

? ? ? ? case5:{

? ? ? ? ? ? LiveGiftShowModel * model = [LiveGiftShowModel giftModel:self.giftArr[5] userModel:self.fifthUser1];

? ? ? ? ? ? [self.customGiftShowanimatedWithGiftModel:model];

? ? ? ? ? ? break;

? ? ? ? }

? ? ? ? case6:{

? ? ? ? ? ? LiveGiftShowModel * model = [LiveGiftShowModel giftModel:self.giftArr[6] userModel:self.fifthUser2];

? ? ? ? ? ? //? ? ? ? ? ? model.toNumber = 2;

? ? ? ? ? ? [self.customGiftShowanimatedWithGiftModel:model];

? ? ? ? ? ? break;

? ? ? ? }

? ? ? ? case7:{

? ? ? ? ? ? LiveGiftShowModel * model = [LiveGiftShowModel giftModel:self.giftArr[7] userModel:self.fifthUser3];

? ? ? ? ? ? [self.customGiftShowanimatedWithGiftModel:model];

? ? ? ? ? ? break;

? ? ? ? }

? ? ? ? default:

? ? ? ? ? ? break;

? ? }

}

/**

?彈幕移除回調(diào)代理


?@param showModel 數(shù)據(jù)模型

?*/

- (void)giftDidRemove:(LiveGiftShowModel*)showModel {

? ? WLog(@"用戶:%@ 送出了 %li 個 %@", showModel.user.name,showModel.currentNumber, showModel.giftModel.name);

}

/*

?禮物視圖支持很多配置屬性,開發(fā)者按需選擇。

?*/

- (LiveGiftShowCustom*)customGiftShow{

? ? if (!_customGiftShow) {

? ? ? ? _customGiftShow = [LiveGiftShowCustom addToView:self.view];

? ? ? ? _customGiftShow.addMode = LiveGiftAddModeAdd;

? ? ? ? [_customGiftShow setMaxGiftCount:3];

? ? ? ? [_customGiftShow setShowMode:LiveGiftShowModeFromTopToBottom];

? ? ? ? [_customGiftShow setAppearModel:LiveGiftAppearModeLeft];

? ? ? ? [_customGiftShow setHiddenModel:LiveGiftHiddenModeNone];

? ? ? ? [_customGiftShow enableInterfaceDebug:YES];

? ? ? ? _customGiftShow.delegate = self;

? ? }

? ? return _customGiftShow;

}

- (LiveUserModel*)firstUser {

? ? if (!_firstUser) {

? ? ? ? _firstUser= [[LiveUserModelalloc]init];

? ? ? ? _firstUser.name = @"么么噠";

? ? ? ? _firstUser.iconUrl = @"http://ww1.sinaimg.cn/large/c6a1cfeagy1ffbg8tb6wqj20gl0qogni.jpg";

? ? }

? ? return _firstUser;

}

- (LiveUserModel*)secondUser {

? ? if (!_secondUser) {

? ? ? ? _secondUser= [[LiveUserModelalloc]init];

? ? ? ? _secondUser.name = @"啪啪啪";

? ? ? ? _secondUser.iconUrl = @"http://ww1.sinaimg.cn/large/c6a1cfeagy1ffbgd5cr5nj209s0akgly.jpg";

? ? }

? ? return _secondUser;

}

- (LiveUserModel*)thirdUser {

? ? if (!_thirdUser) {

? ? ? ? _thirdUser= [[LiveUserModelalloc]init];

? ? ? ? _thirdUser.name = @"項(xiàng)圈";

? ? ? ? _thirdUser.iconUrl = @"http://ww1.sinaimg.cn/large/c6a1cfeagy1ffbgeuwk21j205k05kq2w.jpg";

? ? }

? ? return _thirdUser;

}

- (LiveUserModel*)fourthUser {

? ? if (!_fourthUser) {

? ? ? ? _fourthUser= [[LiveUserModelalloc]init];

? ? ? ? _fourthUser.name = @"比基尼";

? ? ? ? _fourthUser.iconUrl = @"http://ww1.sinaimg.cn/large/c6a1cfeagy1ffbgfpf5bgj205k07v3yk.jpg";

? ? }

? ? return _fourthUser;

}

- (LiveUserModel*)fifthUser {

? ? if (!_fifthUser) {

? ? ? ? _fifthUser= [[LiveUserModelalloc]init];

? ? ? ? _fifthUser.name = @"上上簽";

? ? ? ? _fifthUser.iconUrl = @"http://ww1.sinaimg.cn/large/c6a1cfeagy1ffbgg5427qj205k05k748.jpg";

? ? }

? ? return _fifthUser;

}

- (LiveUserModel*)fifthUser1 {

? ? if (!_fifthUser1) {

? ? ? ? _fifthUser1= [[LiveUserModelalloc]init];

? ? ? ? _fifthUser1.name = @"法拉利";

? ? ? ? _fifthUser1.iconUrl = @"http://ww1.sinaimg.cn/large/c6a1cfeagy1ffbgg5427qj205k05k748.jpg";

? ? }

? ? return _fifthUser1;

}

- (LiveUserModel*)fifthUser2 {

? ? if (!_fifthUser2) {

? ? ? ? _fifthUser2= [[LiveUserModelalloc]init];

? ? ? ? _fifthUser2.name = @"壁咚";

? ? ? ? _fifthUser2.iconUrl = @"http://ww1.sinaimg.cn/large/c6a1cfeagy1ffbgg5427qj205k05k748.jpg";

? ? }

? ? return _fifthUser2;

}

- (LiveUserModel*)fifthUser3 {

? ? if (!_fifthUser3) {

? ? ? ? _fifthUser3= [[LiveUserModelalloc]init];

? ? ? ? _fifthUser3.name = @"浪漫熱氣球";

? ? ? ? _fifthUser3.iconUrl = @"http://ww1.sinaimg.cn/large/c6a1cfeagy1ffbgg5427qj205k05k748.jpg";


? ? }

? ? return _fifthUser3;

}

- (LiveGiftListModel*)giftListModel {

? ? if (!_giftListModel) {

? ? ? ? _giftListModel = [[LiveGiftListModel alloc]init];

? ? ? ? _giftListModel.picUrl = @"http://ww1.sinaimg.cn/large/c6a1cfeagy1ffbgg5427qj205k05k748.jpg";

? ? }

? ? return _giftListModel;

}

@end

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 227,572評論 6 531
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 98,071評論 3 414
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事。” “怎么了?”我有些...
    開封第一講書人閱讀 175,409評論 0 373
  • 文/不壞的土叔 我叫張陵,是天一觀的道長。 經(jīng)常有香客問我,道長,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 62,569評論 1 307
  • 正文 為了忘掉前任,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 71,360評論 6 404
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 54,895評論 1 321
  • 那天,我揣著相機(jī)與錄音,去河邊找鬼。 笑死,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 42,979評論 3 440
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 42,123評論 0 286
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 48,643評論 1 333
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 40,559評論 3 354
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 42,742評論 1 369
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 38,250評論 5 356
  • 正文 年R本政府宣布,位于F島的核電站,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 43,981評論 3 346
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 34,363評論 0 25
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 35,622評論 1 280
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個月前我還...
    沈念sama閱讀 51,354評論 3 390
  • 正文 我出身青樓,卻偏偏與公主長得像,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 47,707評論 2 370

推薦閱讀更多精彩內(nèi)容